easy-soft-develop 2.1.47 → 2.1.48
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.48",
|
|
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"
|
|
@@ -71,13 +72,13 @@
|
|
|
71
72
|
"terminal-kit": "^3.0.1"
|
|
72
73
|
},
|
|
73
74
|
"devDependencies": {
|
|
74
|
-
"@commitlint/cli": "^18.4.
|
|
75
|
-
"@commitlint/config-conventional": "^18.4.
|
|
76
|
-
"@commitlint/config-pnpm-scopes": "^18.4.
|
|
77
|
-
"@commitlint/cz-commitlint": "^18.4.
|
|
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.
|
|
81
|
+
"eslint": "^8.54.0",
|
|
81
82
|
"eslint-config-prettier": "^9.0.0",
|
|
82
83
|
"eslint-formatter-pretty": "^6.0.0",
|
|
83
84
|
"eslint-import-resolver-typescript": "^3.6.1",
|
|
@@ -87,7 +88,7 @@
|
|
|
87
88
|
"eslint-plugin-promise": "^6.1.1",
|
|
88
89
|
"husky": "^8.0.3",
|
|
89
90
|
"lint-staged": "^15.1.0",
|
|
90
|
-
"npm-check-updates": "^16.14.
|
|
91
|
+
"npm-check-updates": "^16.14.11",
|
|
91
92
|
"prettier": "^3.1.0",
|
|
92
93
|
"prettier-plugin-packagejson": "^2.4.6"
|
|
93
94
|
}
|
|
@@ -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
|
|
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
|
|