easy-soft-develop 2.1.65 → 2.1.66

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,7 @@
1
1
  {
2
2
  "$schema": "http://json-schema.org/draft-04/schema#",
3
3
  "name": "easy-soft-develop",
4
- "version": "2.1.65",
4
+ "version": "2.1.66",
5
5
  "description": "",
6
6
  "homepage": "https://github.com/kityandhero/easy-soft-develop#readme",
7
7
  "bugs": {
@@ -73,12 +73,10 @@ const lintScript = {
73
73
  };
74
74
 
75
75
  const prepareScript = {
76
- prepare: 'pnpm changeset init && npm run z:husky:install && echo do other prepare work with here before run z:husky:install',
77
- 'z:husky:install':'npx husky install'
76
+ prepare: 'echo do other prepare work with here before install package'
78
77
  };
79
78
 
80
79
  const toolsScript = {
81
- postinstall: 'npm run z:initial:environment && echo do other postinstall work with here',
82
80
  'z:show:info':
83
81
  'echo node version && node --version && echo npm version && npm --version',
84
82
  "z:sleep": "npx easy-soft-develop sleep --second 2 --showInfo false",
@@ -104,19 +102,20 @@ const environmentScript = {
104
102
  };
105
103
 
106
104
  const repositoryScript = {
107
- 'z:repository:publish': 'pnpm -r publish',
108
- 'z:bootstrap':
109
- 'npm run z:clean && git pull && npm run z:install && npm run z:husky:install',
105
+ "z:repository:publish": "pnpm -r publish",
106
+ "z:bootstrap": "npm run z:clean && git pull && npm run z:install && npm run z:husky:install",
110
107
  };
111
108
 
112
109
  const installScript = {
113
110
  "z:reinstall": 'npm run z:bootstrap',
114
- "postinstall": "npm run z:initial:environment",
111
+ "postinstall": "pnpm changeset init && npm run z:husky:install && npm run z:initial:environment && npm run z:post:extra:install",
115
112
  "prez:install.global.develop.dependence": "npm run z:change:npm:registry:local",
116
113
  "z:install.global.develop.dependence": "node ./develop/assists/install.global.develop.dependence",
117
114
  "postz:install.global.develop.dependence": "npm run z:install",
118
115
  "prez:install": "npm run z:change:npm:registry:local",
119
116
  "z:install": "pnpm install",
117
+ "z:post:extra:install": "echo do other postinstall work with here",
118
+ "z:husky:install": "npx husky install"
120
119
  };
121
120
 
122
121
  const nrmScript = {