Skip to content

Commit 76bd21d

Browse files
committed
Comment out closureCompiler for the time being
1 parent 0234e01 commit 76bd21d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

nin/backend/dasbootgen.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const ClosureCompiler = require('google-closure-compiler-js').webpack;
1+
//const ClosureCompiler = require('google-closure-compiler-js').webpack;
22
const p = require('path');
33
const webpack = require('webpack');
44

@@ -13,7 +13,7 @@ async function dasbootGen(projectPath) {
1313
path: p.join(projectPath, 'gen'),
1414
filename: 'dasBoot.js',
1515
},
16-
plugins: [
16+
/*plugins: [
1717
new ClosureCompiler({
1818
options: {
1919
languageIn: 'ECMASCRIPT6',
@@ -23,7 +23,7 @@ async function dasbootGen(projectPath) {
2323
externs: ['GU', 'FILES', 'PROJECT', 'SHADERS'],
2424
},
2525
})
26-
]
26+
]*/
2727
}).run((err) => {
2828
err ? reject() : resolve();
2929
});

0 commit comments

Comments
 (0)