create-done-coding 0.2.1-0 → 0.2.1-alpha.0
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/package.json +4 -3
- package/types/injectInfo.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-done-coding",
|
|
3
|
-
"version": "0.2.1-0",
|
|
3
|
+
"version": "0.2.1-alpha.0",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "types/index.d.ts",
|
|
6
6
|
"bin": "dist/index.js",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"dev": "pnpm run inject && vite",
|
|
14
14
|
"build": "pnpm run inject && vite build",
|
|
15
15
|
"prepack": "pnpm build",
|
|
16
|
-
"push": "dc-publish npm"
|
|
16
|
+
"push": "cross-env TARGET_ENV=$npm_config_t dc-publish npm -t $TARGET_ENV"
|
|
17
17
|
},
|
|
18
18
|
"repository": {
|
|
19
19
|
"type": "git",
|
|
@@ -25,11 +25,12 @@
|
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@commitlint/cli": "^16.3.0",
|
|
27
27
|
"@commitlint/config-conventional": "^16.2.4",
|
|
28
|
-
"@done-coding/publish": "0.0.
|
|
28
|
+
"@done-coding/publish": "0.0.3-alpha.2",
|
|
29
29
|
"@types/node": "^16",
|
|
30
30
|
"@types/prompts": "^2.4.6",
|
|
31
31
|
"@typescript-eslint/eslint-plugin": "^6.7.0",
|
|
32
32
|
"@typescript-eslint/parser": "^6.7.0",
|
|
33
|
+
"cross-env": "^7.0.3",
|
|
33
34
|
"eslint": "^8.49.0",
|
|
34
35
|
"eslint-config-alloy": "^5.1.2",
|
|
35
36
|
"husky": "^8.0.3",
|
package/types/injectInfo.d.ts
CHANGED