Daniel Zlotin před 7 roky
rodič
revize
f342c57033
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1
    1
      scripts/release.js

+ 1
- 1
scripts/release.js Zobrazit soubor

@@ -54,7 +54,7 @@ email=\${NPM_EMAIL}
54 54
 
55 55
 function tagAndPublish(newVersion) {
56 56
   console.log(`new version is: ${newVersion}`);
57
-  exec.execSync(`npm version ${newVersion} -m "v${newVersion} [ci skip]"`);
57
+  exec.execSync(`npm version ${newVersion} -f -m "v${newVersion} [ci skip]"`);
58 58
   exec.execSyncSilent(`git push deploy --tags`);
59 59
   exec.execSync(`npm publish --tag ${VERSION_TAG}`);
60 60
 }