create-done-coding 0.2.1 → 0.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +0 -0
- package/package.json +9 -21
package/dist/index.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-done-coding",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.3",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "types/index.d.ts",
|
|
6
6
|
"bin": "dist/index.js",
|
|
@@ -8,6 +8,12 @@
|
|
|
8
8
|
"dist",
|
|
9
9
|
"types"
|
|
10
10
|
],
|
|
11
|
+
"scripts": {
|
|
12
|
+
"dev": "vite",
|
|
13
|
+
"build": "vite build",
|
|
14
|
+
"prepack": "pnpm build",
|
|
15
|
+
"push": "dc-publish npm"
|
|
16
|
+
},
|
|
11
17
|
"repository": {
|
|
12
18
|
"type": "git",
|
|
13
19
|
"url": "https://gitee.com/justsosu/create-done-coding"
|
|
@@ -18,6 +24,7 @@
|
|
|
18
24
|
"devDependencies": {
|
|
19
25
|
"@commitlint/cli": "^16.3.0",
|
|
20
26
|
"@commitlint/config-conventional": "^16.2.4",
|
|
27
|
+
"@done-coding/publish": "0.0.7",
|
|
21
28
|
"@types/node": "^16",
|
|
22
29
|
"@types/prompts": "^2.4.6",
|
|
23
30
|
"@typescript-eslint/eslint-plugin": "^6.7.0",
|
|
@@ -42,24 +49,5 @@
|
|
|
42
49
|
},
|
|
43
50
|
"dependencies": {
|
|
44
51
|
"prompts": "^2.4.2"
|
|
45
|
-
},
|
|
46
|
-
"scripts": {
|
|
47
|
-
"inject": "node ./scripts/generateInject.js",
|
|
48
|
-
"dev": "pnpm run inject && vite",
|
|
49
|
-
"build": "pnpm run inject && vite build",
|
|
50
|
-
"publish:prepatch": "pnpm version prepatch && pnpm publish --tag next",
|
|
51
|
-
"publish:patch": "pnpm version patch && pnpm publish",
|
|
52
|
-
"publish:preminor": "pnpm version preminor && pnpm publish --tag next",
|
|
53
|
-
"publish:minor": "pnpm version minor && pnpm publish",
|
|
54
|
-
"publish:premajor": "pnpm version premajor && pnpm publish --tag next",
|
|
55
|
-
"publish:major": "pnpm version major && pnpm publish",
|
|
56
|
-
"postPublishNext": "git push --follow-tags origin next",
|
|
57
|
-
"postPublishFormal": "git push --follow-tags origin master",
|
|
58
|
-
"postpublish:prepatch": "pnpm run postPublishNext",
|
|
59
|
-
"postpublish:patch": "pnpm run postPublishFormal",
|
|
60
|
-
"postpublish:preminor": "pnpm run postPublishNext",
|
|
61
|
-
"postpublish:minor": "pnpm run postPublishFormal",
|
|
62
|
-
"postpublish:premajor": "pnpm run postPublishNext",
|
|
63
|
-
"postpublish:major": "pnpm run postPublishFormal"
|
|
64
52
|
}
|
|
65
|
-
}
|
|
53
|
+
}
|