Fix npm issue for deploy script

This commit is contained in:
Louis Lam 2023-02-15 03:20:40 +08:00
parent 2620ec3fae
commit e04a8203dc
2 changed files with 4 additions and 2 deletions

View file

@ -22,7 +22,8 @@ if (! exists) {
fs.writeFileSync("package.json", JSON.stringify(pkg, null, 4) + "\n"); fs.writeFileSync("package.json", JSON.stringify(pkg, null, 4) + "\n");
// Also update package-lock.json // Also update package-lock.json
childProcess.spawnSync("npm", [ "install" ]); const npm = /^win/.test(process.platform) ? "npm.cmd" : "npm";
childProcess.spawnSync(npm, [ "install" ]);
commit(version); commit(version);
tag(version); tag(version);

View file

@ -26,7 +26,8 @@ if (! exists) {
fs.writeFileSync("package.json", JSON.stringify(pkg, null, 4) + "\n"); fs.writeFileSync("package.json", JSON.stringify(pkg, null, 4) + "\n");
// Also update package-lock.json // Also update package-lock.json
childProcess.spawnSync("npm", [ "install" ]); const npm = /^win/.test(process.platform) ? "npm.cmd" : "npm";
childProcess.spawnSync(npm, [ "install" ]);
commit(newVersion); commit(newVersion);
tag(newVersion); tag(newVersion);