123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- diff --git a/build/lib/compilation.js b/build/lib/compilation.js
- index 63ddeb2..31d2f35 100644
- --- a/build/lib/compilation.js
- +++ b/build/lib/compilation.js
- @@ -21,3 +21,2 @@ const File = require("vinyl");
- const task = require("./task");
- -const mangleTypeScript_1 = require("./mangleTypeScript");
- const watch = require('./watch');
- @@ -104,24 +103,3 @@ function compileTask(src, out, build, options = {}) {
- }
- - // mangle: TypeScript to TypeScript
- - let mangleStream = es.through();
- - if (build && !options.disableMangle) {
- - let ts2tsMangler = new mangleTypeScript_1.Mangler(compile.projectPath, (...data) => fancyLog(ansiColors.blue('[mangler]'), ...data));
- - const newContentsByFileName = ts2tsMangler.computeNewFileContents(new Set(['saveState']));
- - mangleStream = es.through(function write(data) {
- - const tsNormalPath = ts.normalizePath(data.path);
- - const newContents = newContentsByFileName.get(tsNormalPath);
- - if (newContents !== undefined) {
- - data.contents = Buffer.from(newContents.out);
- - data.sourceMap = newContents.sourceMap && JSON.parse(newContents.sourceMap);
- - }
- - this.push(data);
- - }, function end() {
- - this.push(null);
- - // free resources
- - newContentsByFileName.clear();
- - ts2tsMangler = undefined;
- - });
- - }
- return srcPipe
- - .pipe(mangleStream)
- .pipe(generator.stream)
- diff --git a/build/lib/compilation.ts b/build/lib/compilation.ts
- index d5cd196..afe16d3 100644
- --- a/build/lib/compilation.ts
- +++ b/build/lib/compilation.ts
- @@ -19,4 +19,2 @@ import * as File from 'vinyl';
- import * as task from './task';
- -import { Mangler } from './mangleTypeScript';
- -import { RawSourceMap } from 'source-map';
- const watch = require('./watch');
- @@ -123,26 +121,3 @@ export function compileTask(src: string, out: string, build: boolean, options: {
-
- - // mangle: TypeScript to TypeScript
- - let mangleStream = es.through();
- - if (build && !options.disableMangle) {
- - let ts2tsMangler = new Mangler(compile.projectPath, (...data) => fancyLog(ansiColors.blue('[mangler]'), ...data));
- - const newContentsByFileName = ts2tsMangler.computeNewFileContents(new Set(['saveState']));
- - mangleStream = es.through(function write(data: File & { sourceMap?: RawSourceMap }) {
- - type TypeScriptExt = typeof ts & { normalizePath(path: string): string };
- - const tsNormalPath = (<TypeScriptExt>ts).normalizePath(data.path);
- - const newContents = newContentsByFileName.get(tsNormalPath);
- - if (newContents !== undefined) {
- - data.contents = Buffer.from(newContents.out);
- - data.sourceMap = newContents.sourceMap && JSON.parse(newContents.sourceMap);
- - }
- - this.push(data);
- - }, function end() {
- - this.push(null);
- - // free resources
- - newContentsByFileName.clear();
- - (<any>ts2tsMangler) = undefined;
- - });
- - }
- -
- return srcPipe
- - .pipe(mangleStream)
- .pipe(generator.stream)
|