Skip to content

Commit

Permalink
chore: Fix build on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
ExE-Boss committed Jul 1, 2020
1 parent 60b4e5e commit 907e936
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.js
Expand Up @@ -20,9 +20,9 @@ const path = require('path');
const ClosureCompiler = require('google-closure-compiler').compiler;

const closureCompiler = new ClosureCompiler({
js: './src/*.js',
entry_point: './src/index.js',
js_output_file: './proxy.min.js',
js: path.resolve(__dirname, './src/*.js'),
entry_point: path.resolve(__dirname, './src/index.js'),
js_output_file: path.resolve(__dirname, './proxy.min.js'),
language_in: 'ECMASCRIPT6_STRICT',
language_out: 'ECMASCRIPT5',
compilation_level: 'ADVANCED_OPTIMIZATIONS',
Expand Down

0 comments on commit 907e936

Please sign in to comment.