easy-soft-develop 2.1.47 → 2.1.49

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.47",
3
+ "version": "2.1.49",
4
4
  "description": "",
5
5
  "homepage": "https://github.com/kityandhero/easy-soft-develop#readme",
6
6
  "bugs": {
@@ -55,6 +55,7 @@
55
55
  "prez:publish:patch:npm": "npm run z:cz && npm version patch",
56
56
  "z:publish:patch:npm": "npm publish --registry https://registry.npmjs.org/",
57
57
  "postz:publish:patch:npm": "npm run z:change:npm:registry:local && npm publish",
58
+ "z:reinstall": "rimraf ./node_modules && npm run z:install",
58
59
  "z:tsc:build": "echo show tsc version and create declaration file && tsc -v && tsc -p ./tsconfig.types.json && echo declaration file generate complete",
59
60
  "z:update:all-package-version": "npx ncu -u",
60
61
  "z:update:package-from-package": "npx ncu -u"
@@ -64,21 +65,21 @@
64
65
  "download": "^8.0.0",
65
66
  "download-git-repo": "^3.0.2",
66
67
  "enquirer": "^2.4.1",
67
- "fs-extra": "^11.1.1",
68
+ "fs-extra": "^11.2.0",
68
69
  "hpagent": "^1.2.0",
69
70
  "ping": "^0.4.4",
70
71
  "shelljs": "^0.8.5",
71
72
  "terminal-kit": "^3.0.1"
72
73
  },
73
74
  "devDependencies": {
74
- "@commitlint/cli": "^18.4.1",
75
- "@commitlint/config-conventional": "^18.4.0",
76
- "@commitlint/config-pnpm-scopes": "^18.4.0",
77
- "@commitlint/cz-commitlint": "^18.4.1",
75
+ "@commitlint/cli": "^18.4.3",
76
+ "@commitlint/config-conventional": "^18.4.3",
77
+ "@commitlint/config-pnpm-scopes": "^18.4.3",
78
+ "@commitlint/cz-commitlint": "^18.4.3",
78
79
  "commitizen": "^4.3.0",
79
80
  "conventional-changelog-conventionalcommits": "^7.0.2",
80
- "eslint": "^8.53.0",
81
- "eslint-config-prettier": "^9.0.0",
81
+ "eslint": "^8.55.0",
82
+ "eslint-config-prettier": "^9.1.0",
82
83
  "eslint-formatter-pretty": "^6.0.0",
83
84
  "eslint-import-resolver-typescript": "^3.6.1",
84
85
  "eslint-plugin-eslint-comments": "^3.2.0",
@@ -86,9 +87,9 @@
86
87
  "eslint-plugin-prettier": "^5.0.1",
87
88
  "eslint-plugin-promise": "^6.1.1",
88
89
  "husky": "^8.0.3",
89
- "lint-staged": "^15.1.0",
90
- "npm-check-updates": "^16.14.6",
90
+ "lint-staged": "^15.2.0",
91
+ "npm-check-updates": "^16.14.11",
91
92
  "prettier": "^3.1.0",
92
- "prettier-plugin-packagejson": "^2.4.6"
93
+ "prettier-plugin-packagejson": "^2.4.7"
93
94
  }
94
95
  }
@@ -106,9 +106,8 @@ function adjustMainPackageJsonScript({ scripts }) {
106
106
  loopPackage(({ name }) => {
107
107
  publishPackageNameList.push(name);
108
108
 
109
- autoAdjustFileScript[
110
- `z:auto:adjust:file:${name}`
111
- ] = `cd packages/${name} && npm run z:auto:adjust:file`;
109
+ autoAdjustFileScript[`z:auto:adjust:file:${name}`] =
110
+ `cd packages/${name} && npm run z:auto:adjust:file`;
112
111
 
113
112
  autoAdjustFileAllProjects.push(`npm run z:auto:adjust:file:${name}`);
114
113