From 383aaee30966e85c137d9dd82aad30d4d4c2ae91 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 e3f796d..9b06f96 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(); });