@zwa73/dev-utils 1.0.69 → 1.0.70
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.
@@ -58,7 +58,7 @@ const CmdInitElectron = (program) => program
|
|
58
58
|
utils_1.SLogger.info(`开始初始化设置当前目录 ${RouteInterface_1.PROJECT_PATH}`);
|
59
59
|
await Promise.all([
|
60
60
|
copyData(),
|
61
|
-
utils_1.UtilFunc.exec(`npm
|
61
|
+
utils_1.UtilFunc.exec(`npm ci`, { outlvl: 'info', errlvl: 'warn' })
|
62
62
|
]);
|
63
63
|
});
|
64
64
|
exports.CmdInitElectron = CmdInitElectron;
|
package/package.json
CHANGED
@@ -37,6 +37,6 @@ export const CmdInitElectron = (program:Command)=>program
|
|
37
37
|
SLogger.info(`开始初始化设置当前目录 ${PROJECT_PATH}`);
|
38
38
|
await Promise.all([
|
39
39
|
copyData(),
|
40
|
-
UtilFunc.exec(`npm
|
40
|
+
UtilFunc.exec(`npm ci`,{outlvl:'info',errlvl:'warn'})
|
41
41
|
]);
|
42
42
|
});
|