easy-soft-develop 2.1.68 → 2.1.69
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "easy-soft-develop",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.69",
|
|
4
4
|
"description": "",
|
|
5
5
|
"homepage": "https://github.com/kityandhero/easy-soft-develop#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -27,7 +27,6 @@
|
|
|
27
27
|
],
|
|
28
28
|
"scripts": {
|
|
29
29
|
"commitlint": "npx commitlint --edit",
|
|
30
|
-
"postinstall": "pnpm changeset init && npm run z:husky",
|
|
31
30
|
"precommit": "npm run z:lint:staged:quiet",
|
|
32
31
|
"prepare": "echo do other prepare work with here before install package",
|
|
33
32
|
"test:bin:check-all-package-version": "node ./bin/cli.js check-all-package-version",
|
|
@@ -52,8 +51,10 @@
|
|
|
52
51
|
"postz:cz": "git push",
|
|
53
52
|
"z:husky": "npx husky",
|
|
54
53
|
"z:install": "pnpm install",
|
|
54
|
+
"postz:install": "pnpm changeset init && npm run z:husky && npm run z:post:extra:install",
|
|
55
55
|
"z:lint:staged": "npx lint-staged",
|
|
56
56
|
"z:lint:staged:quiet": "npx lint-staged --quiet",
|
|
57
|
+
"z:post:extra:install": "echo do other postinstall work with here",
|
|
57
58
|
"z:prettier:format:all": "npx prettier --write .",
|
|
58
59
|
"z:prettier:format:change": "npx prettier --cache --write . && node ./bin/cli.js prompt --message \"format changed files complete\" --type success --blankLine",
|
|
59
60
|
"z:publish:build": "npm run z:publish:patch:npm",
|
|
@@ -75,7 +76,7 @@
|
|
|
75
76
|
"hpagent": "^1.2.0",
|
|
76
77
|
"ping": "^0.4.4",
|
|
77
78
|
"shelljs": "^0.8.5",
|
|
78
|
-
"terminal-kit": "^3.
|
|
79
|
+
"terminal-kit": "^3.1.1"
|
|
79
80
|
},
|
|
80
81
|
"devDependencies": {
|
|
81
82
|
"@changesets/cli": "^2.27.1",
|
|
@@ -108,12 +108,12 @@ const repositoryScript = {
|
|
|
108
108
|
|
|
109
109
|
const installScript = {
|
|
110
110
|
"z:reinstall": 'npm run z:bootstrap',
|
|
111
|
-
"postinstall": "pnpm changeset init && npm run z:husky && npm run z:initial:environment && npm run z:post:extra:install",
|
|
112
111
|
"prez:install.global.develop.dependence": "npm run z:change:npm:registry:local",
|
|
113
112
|
"z:install.global.develop.dependence": "node ./develop/assists/install.global.develop.dependence",
|
|
114
113
|
"postz:install.global.develop.dependence": "npm run z:install",
|
|
115
114
|
"prez:install": "npm run z:change:npm:registry:local",
|
|
116
115
|
"z:install": "pnpm install",
|
|
116
|
+
"postz:install": "pnpm changeset init && npm run z:husky && npm run z:post:extra:install && npm run z:initial:environment",
|
|
117
117
|
"z:post:extra:install": "echo do other postinstall work with here",
|
|
118
118
|
"z:husky": "npx husky"
|
|
119
119
|
};
|