From 4fdb351c32d56f4b16b4699d742abebc098ec8d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Mon, 23 Oct 2017 12:32:58 +0200 Subject: [PATCH] build: tryingt of fix windows build issue --- scripts/grunt/options/exec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/grunt/options/exec.js b/scripts/grunt/options/exec.js index b4ae6ada6e1..e22d060ea04 100644 --- a/scripts/grunt/options/exec.js +++ b/scripts/grunt/options/exec.js @@ -9,6 +9,6 @@ module.exports = function(config, grunt) { return { tslint: 'node ./node_modules/tslint/lib/tslint-cli.js -c tslint.json --project ./tsconfig.json', jest: 'node ./node_modules/jest-cli/bin/jest.js ' + coverage, - webpack: './node_modules/.bin/webpack --config scripts/webpack/webpack.prod.js', + webpack: 'node ./node_modules/webpack/bin/webpack.js --config scripts/webpack/webpack.prod.js', }; };