easy-soft-develop 2.1.67 → 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,7 +1,6 @@
1
1
  {
2
- "$schema": "http://json-schema.org/draft-04/schema#",
3
2
  "name": "easy-soft-develop",
4
- "version": "2.1.67",
3
+ "version": "2.1.69",
5
4
  "description": "",
6
5
  "homepage": "https://github.com/kityandhero/easy-soft-develop#readme",
7
6
  "bugs": {
@@ -29,7 +28,7 @@
29
28
  "scripts": {
30
29
  "commitlint": "npx commitlint --edit",
31
30
  "precommit": "npm run z:lint:staged:quiet",
32
- "prepare": "pnpm changeset init && npm run z:husky:install && echo do other prepare work with here before run z:husky:install",
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",
34
33
  "test:bin:code": "node ./bin/cli.js code --dataPath ./develop/generatorCodeSource/code.json",
35
34
  "test:bin:create-assist-scripts": "node ./bin/cli.js create-assist-scripts",
@@ -50,10 +49,12 @@
50
49
  "prez:cz": "node ./bin/cli.js commit-refresh && npm run z:prettier:format:change && npm run z:tsc:build && git stage -A",
51
50
  "z:cz": "git-cz",
52
51
  "postz:cz": "git push",
53
- "z:husky:install": "npx husky install",
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.0.2"
79
+ "terminal-kit": "^3.1.1"
79
80
  },
80
81
  "devDependencies": {
81
82
  "@changesets/cli": "^2.27.1",
@@ -220,9 +220,9 @@ function initialEnvironment() {
220
220
 
221
221
  promptEmptyLine();
222
222
 
223
- promptInfo('husky install');
223
+ promptInfo('exec husky');
224
224
 
225
- exec('npx husky install');
225
+ exec('npx husky');
226
226
  }
227
227
 
228
228
  function createRepositoryProject(name) {
@@ -108,14 +108,14 @@ 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:install && 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
- "z:husky:install": "npx husky install"
118
+ "z:husky": "npx husky"
119
119
  };
120
120
 
121
121
  const nrmScript = {