easy-soft-develop 2.1.29 → 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
|
@@ -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
|
-
|
|
2
|
+
/**
|
|
3
|
+
* update special package version
|
|
4
|
+
* @param {Array} packageList
|
|
5
|
+
*/
|
|
6
|
+
export function updateSpecialPackageVersion(packageList: any[]): void;
|
|
3
7
|
export function updateAllPackageVersion(): void;
|