소스 검색

Fix release script

Shalom Yerushalmy 6 년 전
부모
커밋
245b96748f
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      scripts/release.js

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

@@ -48,7 +48,7 @@ function calcNewVersion() {
48 48
 }
49 49
 
50 50
 function copyNpmRc() {
51
-  exec.execSync(`rm -f package-lock.json`);
51
+  execSync(`rm -f package-lock.json`);
52 52
   const npmrcPath = p.resolve(`${__dirname}/.npmrc`);
53 53
   execSync(`cp -rf ${npmrcPath} .`);
54 54
 }