ソースを参照

update RELEASE

Daniel Zlotin 7 年 前
コミット
aa0e0d10f0
共有1 個のファイルを変更した6 個の追加6 個の削除を含む
  1. 6
    6
      scripts/release.js

+ 6
- 6
scripts/release.js ファイルの表示

@@ -58,14 +58,14 @@ function tagAndPublish(newVersion) {
58 58
 }
59 59
 
60 60
 function run() {
61
-  // if (!validateEnv()) {
62
-  //   return;
63
-  // }
64
-  // setupGit();
65
-  // createNpmRc();
61
+  if (!validateEnv()) {
62
+    return;
63
+  }
64
+  setupGit();
65
+  createNpmRc();
66 66
   const newVersion = calcNewVersion();
67 67
   console.log(`new version is: ${newVersion}`);
68
-  // tagAndPublish(newVersion);
68
+  tagAndPublish(newVersion);
69 69
 }
70 70
 
71 71
 run();