Sfoglia il codice sorgente

remove modules update in npm package (for now)

Raanan Weber 7 anni fa
parent
commit
cde2af446c
1 ha cambiato i file con 3 aggiunte e 2 eliminazioni
  1. 3 2
      Tools/Publisher/index.js

+ 3 - 2
Tools/Publisher/index.js

@@ -112,7 +112,8 @@ function processCore(package, version) {
         }
     ];
 
-    fs.readdirSync(basePath + '/modules/').forEach(object => {
+    // remove the modules for now
+    /*fs.readdirSync(basePath + '/modules/').forEach(object => {
         console.log(object);
         if (fs.statSync(basePath + '/modules/' + object).isDirectory) {
             files.push({
@@ -121,7 +122,7 @@ function processCore(package, version) {
                 isDir: true
             });
         }
-    })
+    })*/
 
     //copy them to the package path
     files.forEach(file => {