Skip to content

Commit

Permalink
Comment out closureCompiler for the time being
Browse files Browse the repository at this point in the history
  • Loading branch information
aleksanb committed Apr 24, 2017
1 parent 8e552ba commit 028f1f5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions nin/backend/dasbootgen.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const ClosureCompiler = require('google-closure-compiler-js').webpack;
//const ClosureCompiler = require('google-closure-compiler-js').webpack;
const p = require('path');
const webpack = require('webpack');

Expand All @@ -13,7 +13,7 @@ async function dasbootGen(projectPath) {
path: p.join(projectPath, 'gen'),
filename: 'dasBoot.js',
},
plugins: [
/*plugins: [
new ClosureCompiler({
options: {
languageIn: 'ECMASCRIPT6',
Expand All @@ -23,7 +23,7 @@ async function dasbootGen(projectPath) {
externs: ['GU', 'FILES', 'PROJECT', 'SHADERS'],
},
})
]
]*/
}).run(err => {
err ? reject() : resolve();
});
Expand Down

0 comments on commit 028f1f5

Please sign in to comment.