Browse Source

update RELEASE

Daniel Zlotin 7 years ago
parent
commit
aa0e0d10f0
1 changed files with 6 additions and 6 deletions
  1. 6
    6
      scripts/release.js

+ 6
- 6
scripts/release.js View File

@@ -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();