浏览代码

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