소스 검색

npm version without -f

Daniel Zlotin 7 년 전
부모
커밋
5cd56ad9ac
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      scripts/release.js

+ 1
- 1
scripts/release.js 파일 보기

@@ -70,7 +70,7 @@ email=\${NPM_EMAIL}
70 70
 }
71 71
 
72 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 74
   exec.execSync(`npm publish --tag ${VERSION_TAG}`);
75 75
   exec.execSyncSilent(`git push deploy --tags || true`);
76 76
 }