diff --git a/CHANGELOG.md b/CHANGELOG.md index 3686f9c..3d6ac57 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,43 +1,12 @@ -# template-ext-worker - -## 0.0.8 +# template-ext-string-utils +## 1.0.1 ### Patch Changes -- Updated dependencies - - @kksh/api@0.1.2 +- Update README -## 0.0.7 +## 1.0.0 ### Patch Changes -- Updated dependencies - - @kksh/api@0.1.1 - -## 0.0.6 - -### Patch Changes - -- Updated dependencies - - @kksh/api@0.1.0 - -## 0.0.5 - -### Patch Changes - -- Updated dependencies - - @kksh/api@0.0.53 - -## 0.0.4 - -### Patch Changes - -- Updated dependencies - - @kksh/api@0.0.48 - -## 0.0.3 - -### Patch Changes - -- Updated dependencies - - @kksh/api@0.0.47 +- Initial release \ No newline at end of file diff --git a/README.md b/README.md index 68a28ff..3fde426 100644 --- a/README.md +++ b/README.md @@ -1,28 +1,10 @@ -# Kunkun Template UI Extension +# Kunkun String Utils Extension -This is a template for a template UI extension. (UI follows pre-defined template) +This is an extension for [Kunkun](https://docs.kunkun.sh/) that provides a set of string utility functions. -[./src/index.ts](./src/index.ts) is the default entrypoint for the extension. You can import any other files in this file, but the build process will bundle them into a single file. +Currently supported functions: -## Pros and Cons - -This type of extension is suitable for simple use cases, such as a list or form. All components are pre-defined, so there is not much room for customization. If you want more flexibility on the UI, consider using [Custom UI Extension](https://docs.kunkun.sh/extensions/custom-ui-ext/), which requires some frontend knowledge but gives you full control over the UI. - -Read documentation at https://docs.kunkun.sh/extensions/worker-template/ - -Make sure you understand what this type of extension is capable of. - -### Pros - -- Simple to develop, no need for any frontend knowledge. -- Small bundle size (~40KB) - - [Custom UI Extension](https://docs.kunkun.sh/extensions/custom-ui-ext/) are usually larger than 300KB. - -### Cons - -- Limited UI customization. Not suitable for complex use cases. - -Consider [Custom UI Extension](https://docs.kunkun.sh/extensions/custom-ui-ext/) if you need more complex UI. +![image](./image.png) ## Development @@ -85,5 +67,6 @@ npx kksh@latest verify --publish # Verify some basic settings before publishing See [Documentation](https://docs.kunkun.sh/guides/extensions/publish/design/) for more details on how to publish your extension. You will need to publish your extension package to npm or jsr first with GitHub actioin, then register it on Kunkun's website. # TODO + [ ] padding [ ] Truncate \ No newline at end of file diff --git a/functions.png b/functions.png new file mode 100644 index 0000000..f6b8375 Binary files /dev/null and b/functions.png differ diff --git a/package.json b/package.json index b60b015..3639e97 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.kunkun.sh", "name": "kunkun-ext-string-utils", - "version": "1.0.0", + "version": "1.0.1", "license": "MIT", "type": "module", "repository": "https://github.com/NaN72dev/kunkun-ext-string-utils", @@ -74,8 +74,7 @@ }, "scripts": { "dev": "bun build.ts dev", - "build": "bun build.ts", - "publish": "npm publish --provenance" + "build": "bun build.ts" }, "dependencies": { "@kksh/api": "0.1.3",