From fbc4edea57b4dbe10ba33eb0001b70a22cd6d0f6 Mon Sep 17 00:00:00 2001 From: Rob Blanckaert Date: Fri, 28 Sep 2018 03:34:35 -0700 Subject: [PATCH] Upgrade webpack --- package.json | 4 ++-- webpack.config.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 2a8a66f..a063e06 100644 --- a/package.json +++ b/package.json @@ -11,10 +11,10 @@ "license": "ISC", "dependencies": { "escodegen": "^1.8.0", - "webpack": "^1.13.1" + "webpack": "^3.6.0" }, "devDependencies": { - "skulpt": "git+https://github.com/codecombat/skulpt.git", + "skulpt": "codecombat/skulpt", "chai": "^3.5.0", "mocha": "^3.0.2" } diff --git a/webpack.config.js b/webpack.config.js index a7ead5f..0b5db68 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -4,7 +4,7 @@ module.exports = { library: 'filbert', libraryTarget: 'umd', filename: 'skulpty.js', - path: './build' + path: __dirname + '/build' }, entry: './src/index.js' -}; \ No newline at end of file +};