easy-soft-develop 2.1.27 → 2.1.30

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.27",
3
+ "version": "2.1.30",
4
4
  "description": "",
5
5
  "homepage": "https://github.com/kityandhero/easy-soft-develop#readme",
6
6
  "bugs": {
@@ -88,7 +88,7 @@
88
88
  "husky": "^8.0.3",
89
89
  "lint-staged": "^13.2.3",
90
90
  "npm-check-updates": "^16.10.15",
91
- "prettier": "^3.0.0",
91
+ "prettier": "^2.8.8",
92
92
  "prettier-plugin-packagejson": "^2.4.4"
93
93
  }
94
94
  }
@@ -23,6 +23,10 @@ function checkEasySoftDevelopVersion() {
23
23
  exec('ncu -g easy-soft-develop');
24
24
  }
25
25
 
26
+ /**
27
+ * update special package version
28
+ * @param {Array} packageList
29
+ */
26
30
  function updateSpecialPackageVersion(packageList) {
27
31
  exec('npm run z:initial:environment');
28
32
 
@@ -1,3 +1,7 @@
1
1
  export function checkAllPackageVersion(): void;
2
- export function updateSpecialPackageVersion(packageList: any): void;
2
+ /**
3
+ * update special package version
4
+ * @param {Array} packageList
5
+ */
6
+ export function updateSpecialPackageVersion(packageList: any[]): void;
3
7
  export function updateAllPackageVersion(): void;