From 028f1f56bb370f30b5a77bf9fee1c48741a9e0f1 Mon Sep 17 00:00:00 2001 From: Aleksander Vognild Burkow Date: Tue, 25 Apr 2017 00:25:39 +0200 Subject: [PATCH] Comment out closureCompiler for the time being --- nin/backend/dasbootgen.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nin/backend/dasbootgen.js b/nin/backend/dasbootgen.js index 2ae0722..d3a0faf 100644 --- a/nin/backend/dasbootgen.js +++ b/nin/backend/dasbootgen.js @@ -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'); @@ -13,7 +13,7 @@ async function dasbootGen(projectPath) { path: p.join(projectPath, 'gen'), filename: 'dasBoot.js', }, - plugins: [ + /*plugins: [ new ClosureCompiler({ options: { languageIn: 'ECMASCRIPT6', @@ -23,7 +23,7 @@ async function dasbootGen(projectPath) { externs: ['GU', 'FILES', 'PROJECT', 'SHADERS'], }, }) - ] + ]*/ }).run(err => { err ? reject() : resolve(); });