Skip to content

Commit 5eeea24

Browse files
committed
chore(release): 0.1.4
1 parent a5183f0 commit 5eeea24

File tree

2 files changed

+84
-77
lines changed

2 files changed

+84
-77
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
### [0.1.4](https://github.com/a145789/vue3-script-to-setup/compare/v0.1.3...v0.1.4) (2023-01-03)
6+
7+
8+
### Bug Fixes
9+
10+
* can't find tosetup.config ([a5183f0](https://github.com/a145789/vue3-script-to-setup/commit/a5183f0f81e577d497917a3cbeb292e061cb2372))
11+
512
### [0.1.3](https://github.com/a145789/vue3-script-to-setup/compare/v0.1.2...v0.1.3) (2022-12-30)
613

714

package.json

Lines changed: 77 additions & 77 deletions
Original file line numberDiff line numberDiff line change
@@ -1,77 +1,77 @@
1-
{
2-
"name": "vue3-script-to-setup",
3-
"type": "module",
4-
"version": "0.1.3",
5-
"author": "clencat <2091927351@qq.com>",
6-
"packageManager": "pnpm@7.12.0",
7-
"description": "transform your vue3 script to setup mode",
8-
"license": "MIT",
9-
"repository": {
10-
"type": "git",
11-
"url": "git+https://github.com/a145789/vue3-script-to-setup"
12-
},
13-
"bugs": "https://github.com/a145789/vue3-script-to-setup/issues",
14-
"keywords": [
15-
"vue3"
16-
],
17-
"sideEffects": false,
18-
"files": [
19-
"dist"
20-
],
21-
"exports": {
22-
".": {
23-
"types": "./dist/index.d.ts",
24-
"import": "./dist/index.mjs"
25-
}
26-
},
27-
"main": "./dist/index.mjs",
28-
"module": "./dist/index.mjs",
29-
"types": "./dist/index.d.ts",
30-
"bin": {
31-
"tosetup": "bin/tosetup.mjs"
32-
},
33-
"typesVersions": {
34-
"*": {
35-
"*": [
36-
"./dist/*",
37-
"./dist/index.d.ts"
38-
]
39-
}
40-
},
41-
"engines": {
42-
"node": ">=14"
43-
},
44-
"scripts": {
45-
"build": "tsup",
46-
"lint": "rome ci ./src",
47-
"prepublishOnly": "nr build",
48-
"dev": "esno src/setup.ts",
49-
"test": "vitest",
50-
"typecheck": "tsc --noEmit",
51-
"major": "standard-version -r major",
52-
"minor": "standard-version -r minor",
53-
"patch": "standard-version -r patch",
54-
"release": "pnpm run build && pnpm publish --access public --no-git-checks"
55-
},
56-
"devDependencies": {
57-
"@antfu/ni": "^0.18.8",
58-
"@types/node": "^18.11.14",
59-
"esno": "^0.16.3",
60-
"rome": "^11.0.0",
61-
"standard-version": "^9.5.0",
62-
"typescript": "^4.9.4",
63-
"vite": "^4.0.2",
64-
"vitest": "^0.26.1",
65-
"tsup": "^6.5.0"
66-
},
67-
"dependencies": {
68-
"@swc/core": "^1.3.24",
69-
"colorette": "^2.0.19",
70-
"fast-glob": "^3.2.12",
71-
"find-up": "^6.3.0",
72-
"magic-string": "^0.27.0",
73-
"slash": "^5.0.0",
74-
"unconfig": "^0.3.7",
75-
"vue": "^3.2.45"
76-
}
77-
}
1+
{
2+
"name": "vue3-script-to-setup",
3+
"type": "module",
4+
"version": "0.1.4",
5+
"author": "clencat <2091927351@qq.com>",
6+
"packageManager": "pnpm@7.12.0",
7+
"description": "transform your vue3 script to setup mode",
8+
"license": "MIT",
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/a145789/vue3-script-to-setup"
12+
},
13+
"bugs": "https://github.com/a145789/vue3-script-to-setup/issues",
14+
"keywords": [
15+
"vue3"
16+
],
17+
"sideEffects": false,
18+
"files": [
19+
"dist"
20+
],
21+
"exports": {
22+
".": {
23+
"types": "./dist/index.d.ts",
24+
"import": "./dist/index.mjs"
25+
}
26+
},
27+
"main": "./dist/index.mjs",
28+
"module": "./dist/index.mjs",
29+
"types": "./dist/index.d.ts",
30+
"bin": {
31+
"tosetup": "bin/tosetup.mjs"
32+
},
33+
"typesVersions": {
34+
"*": {
35+
"*": [
36+
"./dist/*",
37+
"./dist/index.d.ts"
38+
]
39+
}
40+
},
41+
"engines": {
42+
"node": ">=14"
43+
},
44+
"scripts": {
45+
"build": "tsup",
46+
"lint": "rome ci ./src",
47+
"prepublishOnly": "nr build",
48+
"dev": "esno src/setup.ts",
49+
"test": "vitest",
50+
"typecheck": "tsc --noEmit",
51+
"major": "standard-version -r major",
52+
"minor": "standard-version -r minor",
53+
"patch": "standard-version -r patch",
54+
"release": "pnpm run build && pnpm publish --access public --no-git-checks"
55+
},
56+
"devDependencies": {
57+
"@antfu/ni": "^0.18.8",
58+
"@types/node": "^18.11.14",
59+
"esno": "^0.16.3",
60+
"rome": "^11.0.0",
61+
"standard-version": "^9.5.0",
62+
"typescript": "^4.9.4",
63+
"vite": "^4.0.2",
64+
"vitest": "^0.26.1",
65+
"tsup": "^6.5.0"
66+
},
67+
"dependencies": {
68+
"@swc/core": "^1.3.24",
69+
"colorette": "^2.0.19",
70+
"fast-glob": "^3.2.12",
71+
"find-up": "^6.3.0",
72+
"magic-string": "^0.27.0",
73+
"slash": "^5.0.0",
74+
"unconfig": "^0.3.7",
75+
"vue": "^3.2.45"
76+
}
77+
}

0 commit comments

Comments
 (0)