Daniel Zlotin пре 8 година
родитељ
комит
5cd56ad9ac
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1
    1
      scripts/release.js

+ 1
- 1
scripts/release.js Прегледај датотеку

70
 }
70
 }
71
 
71
 
72
 function tagAndPublish(newVersion) {
72
 function tagAndPublish(newVersion) {
73
-  exec.execSync(`npm version ${newVersion} -f -m "v${newVersion} [ci skip]"`);
73
+  exec.execSync(`npm version ${newVersion} -m "v${newVersion} [ci skip]"`);
74
   exec.execSync(`npm publish --tag ${VERSION_TAG}`);
74
   exec.execSync(`npm publish --tag ${VERSION_TAG}`);
75
   exec.execSyncSilent(`git push deploy --tags || true`);
75
   exec.execSyncSilent(`git push deploy --tags || true`);
76
 }
76
 }