Browse Source

release 0.0.2

main
谢亚昕 2 months ago
parent
commit
1900f2c38d
  1. 2
      package.json
  2. 10
      packages/browser/CHANGELOG.md
  3. 14
      packages/browser/package.json
  4. 7
      packages/core/CHANGELOG.md
  5. 14
      packages/core/package.json
  6. 7
      packages/node/CHANGELOG.md
  7. 14
      packages/node/package.json
  8. 7
      packages/shared/CHANGELOG.md
  9. 14
      packages/shared/package.json
  10. 10
      packages/vue3/CHANGELOG.md
  11. 14
      packages/vue3/package.json
  12. 7
      packages/xyx-utils/CHANGELOG.md
  13. 14
      packages/xyx-utils/package.json
  14. 1
      readme.md

2
package.json

@ -15,7 +15,7 @@
"coverage": "vitest run --coverage --config ./vitest.shared.ts", "coverage": "vitest run --coverage --config ./vitest.shared.ts",
"changeset:add": "changeset add", "changeset:add": "changeset add",
"changeset:version": "changeset version", "changeset:version": "changeset version",
"changeset:publish": "changeset publish", "changeset:publish": "pnpm publish -r --access=public",
"release": "pnpm run build && pnpm run changeset:add && pnpm run changeset:version && pnpm run changeset:publish" "release": "pnpm run build && pnpm run changeset:add && pnpm run changeset:version && pnpm run changeset:publish"
}, },
"keywords": [], "keywords": [],

10
packages/browser/CHANGELOG.md

@ -0,0 +1,10 @@
# @xyx-utils/browser
## 0.0.2
### Patch Changes
- 增加 exports 字段
- Updated dependencies
- @xyx-utils/shared@0.0.2
- @xyx-utils/core@0.0.2

14
packages/browser/package.json

@ -1,6 +1,6 @@
{ {
"name": "@xyx-utils/browser", "name": "@xyx-utils/browser",
"version": "0.0.1", "version": "0.0.2",
"type": "module", "type": "module",
"description": "", "description": "",
"main": "dist/index.mjs", "main": "dist/index.mjs",
@ -8,8 +8,18 @@
"test": "echo \"Error: no test specified\" && exit 1" "test": "echo \"Error: no test specified\" && exit 1"
}, },
"files": [ "files": [
"dist" "dist",
"readme.md",
"CHANGELOG.md"
], ],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./*": "./dist/*"
},
"keywords": [], "keywords": [],
"author": "", "author": "",
"license": "ISC", "license": "ISC",

7
packages/core/CHANGELOG.md

@ -0,0 +1,7 @@
# @xyx-utils/core
## 0.0.2
### Patch Changes
- 增加 exports 字段

14
packages/core/package.json

@ -1,13 +1,23 @@
{ {
"name": "@xyx-utils/core", "name": "@xyx-utils/core",
"type": "module", "type": "module",
"version": "0.0.1", "version": "0.0.2",
"description": "", "description": "",
"main": "dist/index.mjs", "main": "dist/index.mjs",
"scripts": {}, "scripts": {},
"files": [ "files": [
"dist" "dist",
"readme.md",
"CHANGELOG.md"
], ],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./*": "./dist/*"
},
"keywords": [], "keywords": [],
"author": "", "author": "",
"license": "ISC" "license": "ISC"

7
packages/node/CHANGELOG.md

@ -0,0 +1,7 @@
# @xyx-utils/node
## 0.0.2
### Patch Changes
- 增加 exports 字段

14
packages/node/package.json

@ -1,14 +1,24 @@
{ {
"name": "@xyx-utils/node", "name": "@xyx-utils/node",
"version": "0.0.1", "version": "0.0.2",
"description": "", "description": "",
"main": "dist/index.mjs", "main": "dist/index.mjs",
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1" "test": "echo \"Error: no test specified\" && exit 1"
}, },
"files": [ "files": [
"dist" "dist",
"readme.md",
"CHANGELOG.md"
], ],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./*": "./dist/*"
},
"keywords": [], "keywords": [],
"author": "", "author": "",
"license": "ISC" "license": "ISC"

7
packages/shared/CHANGELOG.md

@ -0,0 +1,7 @@
# @xyx-utils/shared
## 0.0.2
### Patch Changes
- 增加 exports 字段

14
packages/shared/package.json

@ -1,14 +1,24 @@
{ {
"name": "@xyx-utils/shared", "name": "@xyx-utils/shared",
"version": "0.0.1", "version": "0.0.2",
"description": "", "description": "",
"main": "dist/index.mjs", "main": "dist/index.mjs",
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1" "test": "echo \"Error: no test specified\" && exit 1"
}, },
"files": [ "files": [
"dist" "dist",
"readme.md",
"CHANGELOG.md"
], ],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./*": "./dist/*"
},
"keywords": [], "keywords": [],
"author": "", "author": "",
"license": "ISC" "license": "ISC"

10
packages/vue3/CHANGELOG.md

@ -0,0 +1,10 @@
# @xyx-utils/vue3
## 0.0.2
### Patch Changes
- 增加 exports 字段
- Updated dependencies
- @xyx-utils/shared@0.0.2
- @xyx-utils/core@0.0.2

14
packages/vue3/package.json

@ -1,7 +1,7 @@
{ {
"type": "module", "type": "module",
"name": "@xyx-utils/vue3", "name": "@xyx-utils/vue3",
"version": "0.0.1", "version": "0.0.2",
"description": "", "description": "",
"main": "dist/index.mjs", "main": "dist/index.mjs",
"scripts": { "scripts": {
@ -14,8 +14,18 @@
"vue": ">=3.0.0" "vue": ">=3.0.0"
}, },
"files": [ "files": [
"dist" "dist",
"readme.md",
"CHANGELOG.md"
], ],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./*": "./dist/*"
},
"optionalDependencies": { "optionalDependencies": {
"@vueuse/core": ">=10.0.0", "@vueuse/core": ">=10.0.0",
"echarts": ">=4.0.0" "echarts": ">=4.0.0"

7
packages/xyx-utils/CHANGELOG.md

@ -0,0 +1,7 @@
# xyx-utils
## 0.0.2
### Patch Changes
- 增加 exports 字段

14
packages/xyx-utils/package.json

@ -1,14 +1,24 @@
{ {
"name": "xyx-utils", "name": "xyx-utils",
"version": "0.0.1", "version": "0.0.2",
"description": "", "description": "",
"main": "dist/index.mjs", "main": "dist/index.mjs",
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1" "test": "echo \"Error: no test specified\" && exit 1"
}, },
"files": [ "files": [
"dist" "dist",
"readme.md",
"CHANGELOG.md"
], ],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./*": "./dist/*"
},
"keywords": [], "keywords": [],
"author": "", "author": "",
"license": "ISC" "license": "ISC"

1
readme.md

@ -17,6 +17,7 @@
**版本管理** **版本管理**
- changeset - changeset
- changeset publish
- pnpm publish -r --access=public # --report-summary - pnpm publish -r --access=public # --report-summary
可以尝试尝试 可以尝试尝试

Loading…
Cancel
Save