Daniel Zlotin 7 лет назад
Родитель
Сommit
f342c57033
1 измененных файлов: 1 добавлений и 1 удалений
  1. 1
    1
      scripts/release.js

+ 1
- 1
scripts/release.js Просмотреть файл

@@ -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
 }