diff --git a/CHANGELOG.md b/CHANGELOG.md index 24417b9a7..be552e236 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,28 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.20.9](https://github.com/certd/certd/compare/v1.20.8...v1.20.9) (2024-03-22) + +**Note:** Version bump only for package root + +## [1.20.8](https://github.com/certd/certd/compare/v1.20.7...v1.20.8) (2024-03-22) + +**Note:** Version bump only for package root + +## [1.20.7](https://github.com/certd/certd/compare/v1.20.6...v1.20.7) (2024-03-22) + +**Note:** Version bump only for package root + +## [1.20.6](https://github.com/certd/certd/compare/v1.20.5...v1.20.6) (2024-03-21) + +### Bug Fixes + +* 调整按钮图标到居中位置 ([836d18f](https://github.com/certd/certd/commit/836d18f07e22d00faf2f213bc3301a6672b5bafc)) + +### Performance Improvements + +* 插件贡献文档及示例 ([72fb20a](https://github.com/certd/certd/commit/72fb20abf3ba5bdd862575d2907703a52fd7eb17)) + ## [1.20.5](https://github.com/certd/certd/compare/v1.20.2...v1.20.5) (2024-03-11) ### Bug Fixes diff --git a/README.md b/README.md index 8b62b0007..d39cf66ea 100644 --- a/README.md +++ b/README.md @@ -71,11 +71,11 @@ https://github.com/certd/certd/releases ### 3. 运行 ```bash # 如果docker compose是插件化安装 -export CERTD_VERSION=1.2.0 +export CERTD_VERSION=1.20.9 docker compose up -d #如果docker compose是独立安装 -export CERTD_VERSION=1.2.0 +export CERTD_VERSION=1.20.9 docker-compose up -d ``` @@ -86,6 +86,12 @@ http://your_server_ip:7001 记得修改密码 +### 5. 升级 + +* 修改版本号,重新运行 `docker compose up -d` 即可 +* 数据存在`/data/certd`目录下,不用担心数据丢失 + + ## 五、一些说明 * 本项目ssl证书提供商为letencrypt @@ -119,7 +125,12 @@ http://your_server_ip:7001
-## 七、我的其他项目 +## 七、贡献代码 + +[贡献插件教程](./packages/plugins/plugin-center/README.md) + + +## 八、我的其他项目 * [袖手GPT](https://ai.handsfree.work/) ChatGPT,国内可用,无需FQ,每日免费额度 * [fast-crud](https://gitee.com/fast-crud/fast-crud/) 基于vue3的crud快速开发框架 * [dev-sidecar](https://github.com/docmirror/dev-sidecar/) 直连访问github工具,无需FQ,解决github无法访问的问题 diff --git a/deploy.js b/deploy.js index 34520e1c3..51fd69f3f 100644 --- a/deploy.js +++ b/deploy.js @@ -2,7 +2,7 @@ import http from 'axios' import fs from 'fs' //读取 packages/core/pipline/package.json的版本号 -import {default as packageJson} from './packages/core/pipeline/package.json' assert {type: "json"}; +import {default as packageJson} from './packages/core/pipeline/package.json'; const certdVersion = packageJson.version console.log("certdVersion", certdVersion) @@ -56,7 +56,8 @@ async function sync() { // curl -X PUT https://registry-direct.npmmirror.com/@certd/plugin-cert/sync?sync_upstream=true const certdImageBuild = "http://flow-openapi.aliyun.com/pipeline/webhook/4zgFk3i4RZEMGuQzlOcI" -const webhooks = [certdImageBuild] +const certdImageRun = "http://flow-openapi.aliyun.com/pipeline/webhook/lzCzlGrLCOHQaTMMt0mG" +const webhooks = [certdImageBuild,certdImageRun] async function sleep(time) { return new Promise(resolve => { @@ -78,7 +79,7 @@ async function triggerBuild() { } }) console.log(`webhook success:${webhook}`) - await sleep(1000) + await sleep(10*60*1000) } } diff --git a/lerna.json b/lerna.json index 453fb53ad..a6d8651bd 100644 --- a/lerna.json +++ b/lerna.json @@ -9,5 +9,5 @@ } }, "npmClient": "pnpm", - "version": "1.20.5" + "version": "1.20.9" } diff --git a/package.json b/package.json index acc06369a..eb12353b0 100644 --- a/package.json +++ b/package.json @@ -12,12 +12,11 @@ "scripts": { "start": "lerna bootstrap --hoist", "i-all": "lerna link && lerna exec npm install ", - "publish": "npm run proxy && npm run prepublishOnly1 && lerna publish --conventional-commits && npm run afterpublishOnly && npm run deploy1", + "publish": "npm run prepublishOnly1 && lerna publish --conventional-commits && npm run afterpublishOnly && npm run deploy1", "afterpublishOnly": "", - "proxy": "npm config set proxy=http://127.0.0.1:10809", "prepublishOnly1": "npm run before-build && lerna run build ", "before-build": "cd ./packages/core/acme-client && time /t >build.md && git add ./build.md && git commit -m \"build: prepare to build\"", - "deploy1": "node deploy.js" + "deploy1": "node --experimental-json-modules deploy.js " }, "license": "AGPL-3.0", "dependencies": { diff --git a/packages/core/acme-client/CHANGELOG.md b/packages/core/acme-client/CHANGELOG.md index 89a4c1198..6073144f9 100644 --- a/packages/core/acme-client/CHANGELOG.md +++ b/packages/core/acme-client/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.20.9](https://github.com/publishlab/node-acme-client/compare/v1.20.8...v1.20.9) (2024-03-22) + +**Note:** Version bump only for package @certd/acme-client + +## [1.20.8](https://github.com/publishlab/node-acme-client/compare/v1.20.7...v1.20.8) (2024-03-22) + +**Note:** Version bump only for package @certd/acme-client + +## [1.20.7](https://github.com/publishlab/node-acme-client/compare/v1.20.6...v1.20.7) (2024-03-22) + +**Note:** Version bump only for package @certd/acme-client + +## [1.20.6](https://github.com/publishlab/node-acme-client/compare/v1.20.5...v1.20.6) (2024-03-21) + +**Note:** Version bump only for package @certd/acme-client + ## [1.20.5](https://github.com/publishlab/node-acme-client/compare/v1.20.2...v1.20.5) (2024-03-11) ### Bug Fixes diff --git a/packages/core/acme-client/build.md b/packages/core/acme-client/build.md index d88dd3d72..9761d231d 100644 --- a/packages/core/acme-client/build.md +++ b/packages/core/acme-client/build.md @@ -1 +1 @@ -00:33 +11:26 diff --git a/packages/core/acme-client/package.json b/packages/core/acme-client/package.json index ea6008519..57741022c 100644 --- a/packages/core/acme-client/package.json +++ b/packages/core/acme-client/package.json @@ -3,7 +3,7 @@ "description": "Simple and unopinionated ACME client", "private": false, "author": "nmorsman", - "version": "1.20.5", + "version": "1.20.9", "main": "src/index.js", "types": "types/index.d.ts", "license": "MIT", diff --git a/packages/core/pipeline/CHANGELOG.md b/packages/core/pipeline/CHANGELOG.md index 875fcec13..a88189ddf 100644 --- a/packages/core/pipeline/CHANGELOG.md +++ b/packages/core/pipeline/CHANGELOG.md @@ -3,6 +3,24 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.20.9](https://github.com/certd/certd/compare/v1.20.8...v1.20.9) (2024-03-22) + +**Note:** Version bump only for package @certd/pipeline + +## [1.20.8](https://github.com/certd/certd/compare/v1.20.7...v1.20.8) (2024-03-22) + +**Note:** Version bump only for package @certd/pipeline + +## [1.20.7](https://github.com/certd/certd/compare/v1.20.6...v1.20.7) (2024-03-22) + +**Note:** Version bump only for package @certd/pipeline + +## [1.20.6](https://github.com/certd/certd/compare/v1.20.5...v1.20.6) (2024-03-21) + +### Performance Improvements + +* 插件贡献文档及示例 ([72fb20a](https://github.com/certd/certd/commit/72fb20abf3ba5bdd862575d2907703a52fd7eb17)) + ## [1.20.5](https://github.com/certd/certd/compare/v1.20.2...v1.20.5) (2024-03-11) **Note:** Version bump only for package @certd/pipeline diff --git a/packages/core/pipeline/package.json b/packages/core/pipeline/package.json index db8c6e526..3ac1c8adb 100644 --- a/packages/core/pipeline/package.json +++ b/packages/core/pipeline/package.json @@ -1,7 +1,7 @@ { "name": "@certd/pipeline", "private": false, - "version": "1.20.5", + "version": "1.20.9", "main": "./src/index.ts", "module": "./src/index.ts", "types": "./src/index.ts", @@ -23,7 +23,7 @@ "qs": "^6.11.2" }, "devDependencies": { - "@certd/acme-client": "^1.20.5", + "@certd/acme-client": "^1.20.9", "@rollup/plugin-commonjs": "^23.0.4", "@rollup/plugin-json": "^6.0.0", "@rollup/plugin-node-resolve": "^15.0.1", @@ -46,6 +46,7 @@ "lodash": "^4.17.21", "log4js": "^6.9.1", "mocha": "^10.2.0", + "prettier": "^2.8.8", "reflect-metadata": "^0.1.13", "rollup": "^3.7.4", "rollup-plugin-typescript2": "^0.34.1", diff --git a/packages/plugins/plugin-aliyun/CHANGELOG.md b/packages/plugins/plugin-aliyun/CHANGELOG.md index 3dc400030..219feede4 100644 --- a/packages/plugins/plugin-aliyun/CHANGELOG.md +++ b/packages/plugins/plugin-aliyun/CHANGELOG.md @@ -3,6 +3,24 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.20.9](https://github.com/certd/certd/compare/v1.20.8...v1.20.9) (2024-03-22) + +**Note:** Version bump only for package @certd/plugin-aliyun + +## [1.20.8](https://github.com/certd/certd/compare/v1.20.7...v1.20.8) (2024-03-22) + +**Note:** Version bump only for package @certd/plugin-aliyun + +## [1.20.7](https://github.com/certd/certd/compare/v1.20.6...v1.20.7) (2024-03-22) + +**Note:** Version bump only for package @certd/plugin-aliyun + +## [1.20.6](https://github.com/certd/certd/compare/v1.20.5...v1.20.6) (2024-03-21) + +### Performance Improvements + +* 插件贡献文档及示例 ([72fb20a](https://github.com/certd/certd/commit/72fb20abf3ba5bdd862575d2907703a52fd7eb17)) + ## [1.20.5](https://github.com/certd/certd/compare/v1.20.2...v1.20.5) (2024-03-11) **Note:** Version bump only for package @certd/plugin-aliyun diff --git a/packages/plugins/plugin-aliyun/package.json b/packages/plugins/plugin-aliyun/package.json index e3fc8640b..25502b92a 100644 --- a/packages/plugins/plugin-aliyun/package.json +++ b/packages/plugins/plugin-aliyun/package.json @@ -1,7 +1,7 @@ { "name": "@certd/plugin-aliyun", "private": false, - "version": "1.20.5", + "version": "1.20.9", "main": "./src/index.ts", "module": "./src/index.ts", "types": "./src/index.ts", @@ -23,10 +23,10 @@ "node-forge": "^0.10.0" }, "devDependencies": { - "@certd/acme-client": "^1.20.5", - "@certd/pipeline": "^1.20.5", - "@certd/plugin-cert": "^1.20.5", - "@certd/plugin-util": "^1.20.5", + "@certd/acme-client": "^1.20.9", + "@certd/pipeline": "^1.20.9", + "@certd/plugin-cert": "^1.20.9", + "@certd/plugin-util": "^1.20.9", "@rollup/plugin-commonjs": "^23.0.4", "@rollup/plugin-json": "^6.0.0", "@rollup/plugin-node-resolve": "^15.0.1", @@ -48,6 +48,7 @@ "lodash": "^4.17.21", "log4js": "^6.7.1", "mocha": "^10.1.0", + "prettier": "^2.8.8", "rollup": "^3.7.4", "rollup-plugin-typescript2": "^0.34.1", "rollup-plugin-visualizer": "^5.8.2", diff --git a/packages/plugins/plugin-all/CHANGELOG.md b/packages/plugins/plugin-all/CHANGELOG.md index 4b164f351..eea24a942 100644 --- a/packages/plugins/plugin-all/CHANGELOG.md +++ b/packages/plugins/plugin-all/CHANGELOG.md @@ -3,6 +3,24 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.20.9](https://github.com/certd/certd/compare/v1.20.8...v1.20.9) (2024-03-22) + +**Note:** Version bump only for package @certd/plugin-all + +## [1.20.8](https://github.com/certd/certd/compare/v1.20.7...v1.20.8) (2024-03-22) + +**Note:** Version bump only for package @certd/plugin-all + +## [1.20.7](https://github.com/certd/certd/compare/v1.20.6...v1.20.7) (2024-03-22) + +**Note:** Version bump only for package @certd/plugin-all + +## [1.20.6](https://github.com/certd/certd/compare/v1.20.5...v1.20.6) (2024-03-21) + +### Performance Improvements + +* 插件贡献文档及示例 ([72fb20a](https://github.com/certd/certd/commit/72fb20abf3ba5bdd862575d2907703a52fd7eb17)) + ## [1.20.5](https://github.com/certd/certd/compare/v1.20.2...v1.20.5) (2024-03-11) **Note:** Version bump only for package @certd/plugin-all diff --git a/packages/plugins/plugin-all/package.json b/packages/plugins/plugin-all/package.json index c2de51d71..52db9eec2 100644 --- a/packages/plugins/plugin-all/package.json +++ b/packages/plugins/plugin-all/package.json @@ -1,7 +1,7 @@ { "name": "@certd/plugin-all", "private": false, - "version": "1.20.5", + "version": "1.20.9", "main": "./src/index.ts", "module": "./src/index.ts", "types": "./src/index.ts", @@ -17,12 +17,13 @@ "preview": "vite preview" }, "devDependencies": { - "@certd/pipeline": "^1.20.5", - "@certd/plugin-aliyun": "^1.20.5", - "@certd/plugin-cert": "^1.20.5", - "@certd/plugin-host": "^1.20.5", - "@certd/plugin-huawei": "^1.20.5", - "@certd/plugin-tencent": "^1.20.5", + "@certd/pipeline": "^1.20.9", + "@certd/plugin-aliyun": "^1.20.9", + "@certd/plugin-center": "^1.20.9", + "@certd/plugin-cert": "^1.20.9", + "@certd/plugin-host": "^1.20.9", + "@certd/plugin-huawei": "^1.20.9", + "@certd/plugin-tencent": "^1.20.9", "@rollup/plugin-commonjs": "^23.0.4", "@rollup/plugin-json": "^6.0.0", "@rollup/plugin-node-resolve": "^15.0.1", @@ -39,6 +40,7 @@ "eslint-plugin-import": "^2.26.0", "eslint-plugin-node": "^11.1.0", "eslint-plugin-prettier": "^4.2.1", + "prettier": "^2.8.8", "rollup": "^3.7.4", "rollup-plugin-typescript2": "^0.34.1", "rollup-plugin-visualizer": "^5.8.2", diff --git a/packages/plugins/plugin-all/rollup.config.js b/packages/plugins/plugin-all/rollup.config.js index 35d396431..083d498f1 100644 --- a/packages/plugins/plugin-all/rollup.config.js +++ b/packages/plugins/plugin-all/rollup.config.js @@ -39,5 +39,6 @@ module.exports = { "@certd/plugin-host", "@certd/plugin-tencent", "@certd/plugin-util", + "@certd/plugin-center", ], }; diff --git a/packages/plugins/plugin-all/src/index.ts b/packages/plugins/plugin-all/src/index.ts index 67840b1c6..281afd420 100644 --- a/packages/plugins/plugin-all/src/index.ts +++ b/packages/plugins/plugin-all/src/index.ts @@ -3,3 +3,4 @@ export * from "@certd/plugin-aliyun"; export * from "@certd/plugin-tencent"; export * from "@certd/plugin-host"; export * from "@certd/plugin-huawei"; +export * from "@certd/plugin-center"; diff --git a/packages/plugins/plugin-all/vite.config.ts b/packages/plugins/plugin-all/vite.config.ts deleted file mode 100644 index 39189ccad..000000000 --- a/packages/plugins/plugin-all/vite.config.ts +++ /dev/null @@ -1,57 +0,0 @@ -import { defineConfig } from "vite"; -import visualizer from "rollup-plugin-visualizer"; -import typescript from "@rollup/plugin-typescript"; -// https://vitejs.dev/config/ - -export default defineConfig({ - plugins: [], - build: { - lib: { - entry: "src/index.ts", - name: "CertdPluginAll", - }, - rollupOptions: { - plugins: [ - // @ts-ignore - visualizer(), - // @ts-ignore - typescript({ - target: "esnext", - rootDir: "src", - declaration: true, - declarationDir: "dist/d", - exclude: ["./node_modules/**", "./src/**/*.vue"], - allowSyntheticDefaultImports: true, - }), - ], - external: [ - "vue", - "lodash", - "dayjs", - "@certd/acme-client", - "@certd/pipeline", - "@certd/plugin-cert", - "@certd/plugin-aliyun", - "@certd/plugin-tencent", - "@certd/plugin-huawei", - "@certd/plugin-host", - "@certd/plugin-tencent", - "@certd/plugin-util", - ], - output: { - globals: { - vue: "Vue", - lodash: "_", - dayjs: "dayjs", - "@certd/plugin-cert": "CertdPluginCert", - "@certd/acme-client": "CertdAcmeClient", - "@certd/pipeline": "CertdPluginPipeline", - "@certd/plugin-aliyun": "CertdPluginAliyun", - "@certd/plugin-host": "CertdPluginHost", - "@certd/plugin-huawei": "CertdPluginHuawei", - "@certd/plugin-util": "CertdPluginUtil", - }, - }, - }, - }, -}); diff --git a/packages/plugins/plugin-builder/.eslintrc b/packages/plugins/plugin-builder/.eslintrc new file mode 100644 index 000000000..a591578c0 --- /dev/null +++ b/packages/plugins/plugin-builder/.eslintrc @@ -0,0 +1,23 @@ +{ + "parser": "@typescript-eslint/parser", + "plugins": [ + "@typescript-eslint" + ], + "extends": [ + "plugin:@typescript-eslint/recommended", + "plugin:prettier/recommended", + "prettier" + ], + "env": { + "mocha": true + }, + "rules": { + "@typescript-eslint/no-var-requires": "off", + "@typescript-eslint/ban-ts-comment": "off", + "@typescript-eslint/ban-ts-ignore": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-empty-function": "off", +// "no-unused-expressions": "off", + "max-len": [0, 160, 2, { "ignoreUrls": true }] + } +} diff --git a/packages/plugins/plugin-builder/.gitignore b/packages/plugins/plugin-builder/.gitignore new file mode 100644 index 000000000..5ee37c64c --- /dev/null +++ b/packages/plugins/plugin-builder/.gitignore @@ -0,0 +1,26 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +dist +dist-ssr +*.local + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +.idea +.DS_Store +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? + +test/user.secret.ts \ No newline at end of file diff --git a/packages/plugins/plugin-builder/.mocharc.json b/packages/plugins/plugin-builder/.mocharc.json new file mode 100644 index 000000000..24b75f3e1 --- /dev/null +++ b/packages/plugins/plugin-builder/.mocharc.json @@ -0,0 +1,5 @@ +{ + "extension": ["ts"], + "spec": "test/**/*.test.ts", + "require": "ts-node/register" +} \ No newline at end of file diff --git a/packages/plugins/plugin-builder/.npmignore b/packages/plugins/plugin-builder/.npmignore new file mode 100644 index 000000000..bf40d278c --- /dev/null +++ b/packages/plugins/plugin-builder/.npmignore @@ -0,0 +1,2 @@ +node_modules +src \ No newline at end of file diff --git a/packages/plugins/plugin-builder/.prettierrc b/packages/plugins/plugin-builder/.prettierrc new file mode 100644 index 000000000..1d96ee86b --- /dev/null +++ b/packages/plugins/plugin-builder/.prettierrc @@ -0,0 +1,3 @@ +{ + "printWidth": 160 +} \ No newline at end of file diff --git a/packages/plugins/plugin-builder/CHANGELOG.md b/packages/plugins/plugin-builder/CHANGELOG.md new file mode 100644 index 000000000..0e0408e46 --- /dev/null +++ b/packages/plugins/plugin-builder/CHANGELOG.md @@ -0,0 +1,100 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.20.9](https://github.com/certd/certd/compare/v1.20.8...v1.20.9) (2024-03-22) + +**Note:** Version bump only for package @certd/plugin-builder + +## [1.20.8](https://github.com/certd/certd/compare/v1.20.7...v1.20.8) (2024-03-22) + +**Note:** Version bump only for package @certd/plugin-builder + +## [1.20.7](https://github.com/certd/certd/compare/v1.20.6...v1.20.7) (2024-03-22) + +**Note:** Version bump only for package @certd/plugin-builder + +## [1.20.6](https://github.com/certd/certd/compare/v1.20.5...v1.20.6) (2024-03-21) + +### Performance Improvements + +* 插件贡献文档及示例 ([72fb20a](https://github.com/certd/certd/commit/72fb20abf3ba5bdd862575d2907703a52fd7eb17)) + +## [1.20.5](https://github.com/certd/certd/compare/v1.20.2...v1.20.5) (2024-03-11) + +### Bug Fixes + +* 修复腾讯云cdn部署无法选择端点的bug ([154409b](https://github.com/certd/certd/commit/154409b1dfee3ea1caae740ad9c1f99a6e7a9814)) + +## [1.20.2](https://github.com/certd/certd/compare/v1.2.1...v1.20.2) (2024-02-28) + +**Note:** Version bump only for package @certd/plugin-tencent + +## [1.2.1](https://github.com/certd/certd/compare/v1.2.0...v1.2.1) (2023-12-12) + +**Note:** Version bump only for package @certd/plugin-tencent + +**Note:** Version bump only for package @certd/plugin-tencent + +# [1.2.0](https://github.com/certd/certd/compare/v1.1.6...v1.2.0) (2023-10-27) + +**Note:** Version bump only for package @certd/plugin-tencent + +## [1.1.6](https://github.com/certd/certd/compare/v1.1.5...v1.1.6) (2023-07-10) + +### Bug Fixes + +* 修复上传证书到腾讯云失败的bug ([e950322](https://github.com/certd/certd/commit/e950322232e19d1263b8552eefa5b0150fd7864e)) + +## [1.1.5](https://github.com/certd/certd/compare/v1.1.4...v1.1.5) (2023-07-03) + +**Note:** Version bump only for package @certd/plugin-tencent + +## [1.1.4](https://github.com/certd/certd/compare/v1.1.3...v1.1.4) (2023-07-03) + +### Performance Improvements + +* timeout ([3eeb1f7](https://github.com/certd/certd/commit/3eeb1f77aa2922f3545f3d2067f561d95621d54f)) + +## [1.1.3](https://github.com/certd/certd/compare/v1.1.2...v1.1.3) (2023-07-03) + +**Note:** Version bump only for package @certd/plugin-tencent + +## [1.1.2](https://github.com/certd/certd/compare/v1.1.1...v1.1.2) (2023-07-03) + +**Note:** Version bump only for package @certd/plugin-tencent + +## [1.1.1](https://github.com/certd/certd/compare/v1.1.0...v1.1.1) (2023-06-28) + +**Note:** Version bump only for package @certd/plugin-tencent + +# [1.1.0](https://github.com/certd/certd/compare/v1.0.6...v1.1.0) (2023-06-28) + +### Features + +* save files ([671d273](https://github.com/certd/certd/commit/671d273e2f9136d16896536b0ca127cf372f1619)) + +## [1.0.6](https://github.com/certd/certd/compare/v1.0.5...v1.0.6) (2023-05-25) + +**Note:** Version bump only for package @certd/plugin-tencent + +## [1.0.5](https://github.com/certd/certd/compare/v1.0.4...v1.0.5) (2023-05-25) + +**Note:** Version bump only for package @certd/plugin-tencent + +## [1.0.4](https://github.com/certd/certd/compare/v1.0.3...v1.0.4) (2023-05-25) + +**Note:** Version bump only for package @certd/plugin-tencent + +## [1.0.3](https://github.com/certd/certd/compare/v1.0.2...v1.0.3) (2023-05-25) + +**Note:** Version bump only for package @certd/plugin-tencent + +## [1.0.2](https://github.com/certd/certd/compare/v1.0.1...v1.0.2) (2023-05-24) + +**Note:** Version bump only for package @certd/plugin-tencent + +## [1.0.1](https://github.com/certd/certd/compare/v1.0.0...v1.0.1) (2023-05-24) + +**Note:** Version bump only for package @certd/plugin-tencent diff --git a/packages/plugins/plugin-builder/README.md b/packages/plugins/plugin-builder/README.md new file mode 100644 index 000000000..30b15e215 --- /dev/null +++ b/packages/plugins/plugin-builder/README.md @@ -0,0 +1,16 @@ +# Vue 3 + TypeScript + Vite + +This template should help get you started developing with Vue 3 and TypeScript in Vite. The template uses Vue 3 `