Преглед на файлове

inline sources in publisher

sebavan преди 6 години
родител
ревизия
0602f6d987
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      Tools/Publisher/publisher.js

+ 1 - 1
Tools/Publisher/publisher.js

@@ -125,7 +125,7 @@ function processEs6Packages(version) {
         colorConsole.log("    Cleanup " + buildPath.cyan);
         rmDir(buildPath);
 
-        let command = 'tsc -t es5 -m esNext -p ' + projectPath + ' --outDir ' + buildPath;
+        let command = 'tsc --inlineSources -t es5 -m esNext -p ' + projectPath + ' --outDir ' + buildPath;
         colorConsole.log("    Executing " + command.yellow);
 
         let tscCompile = shelljs.exec(command);