Browse Source

getting ready

sebavan 6 years ago
parent
commit
a3dfbf33dd
3 changed files with 2 additions and 4 deletions
  1. 1 1
      Tools/Gulp/gulpfile.js
  2. 0 2
      Tools/Gulp/tasks/gulpTasks-netlify.js
  3. 1 1
      Tools/Publisher/publisher.js

+ 1 - 1
Tools/Gulp/gulpfile.js

@@ -55,7 +55,7 @@ gulp.task("run", gulp.series("watchCore", "watchLibraries", "webserver"));
 /**
  * Do it all (Build).
  */
-gulp.task("typescript-all", gulp.series("typescript-libraries", "netlify-cleanup"));
+gulp.task("typescript-all", gulp.series("typescript-libraries", "typescript-es6", "netlify-cleanup"));
 
 /**
  * Do it all (tests).

+ 0 - 2
Tools/Gulp/tasks/gulpTasks-netlify.js

@@ -7,8 +7,6 @@ gulp.task("netlify-cleanup", function() {
     //set by netlify
     if (process.env.REPOSITORY_URL) {
         return del([
-            "../../../inspector/node_modules/**/*",
-            "../../../gui/node_modules/**/*",
             "../../../Viewer/node_modules/**/*"
         ], { force: true });
     }

+ 1 - 1
Tools/Publisher/publisher.js

@@ -189,7 +189,7 @@ function processEs6Packages(version) {
         fs.writeFileSync(packageJSONPath, JSON.stringify(legacyPackageJson, null, 4));
 
         // Do not publish yet.
-        // publish(version, es6Config.packageName, buildPath, true);
+        // publish(version, es6Config.packageName, packagePath, true);
         colorConsole.emptyLine();
     });
 }