From 4258619517fc04a9dde1aa6119c72b7b2d1baea8 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Fri, 20 May 2016 19:41:54 +0200 Subject: Update to build with current versions of nodejs --- package.json | 9 ++++----- static/index.html | 10 ++++++++++ webpack.config.js | 8 +++----- 3 files changed, 17 insertions(+), 10 deletions(-) create mode 100644 static/index.html diff --git a/package.json b/package.json index 771f0a0..2d2503b 100644 --- a/package.json +++ b/package.json @@ -6,12 +6,11 @@ }, "dependencies": { "css-loader": "^0.23.1", - "html-webpack-plugin": "^1.7.0", "lodash": "^3.10.1", - "style-loader": "^0.13.0", + "style-loader": "^0.13.1", "ts-loader": "^0.7.2", - "typescript": "^1.7.5", - "webpack": "^1.12.9", - "webpack-dev-server": "^1.14.0" + "typescript": "^1.8.10", + "webpack": "^1.13.1", + "webpack-dev-server": "^1.14.1" } } diff --git a/static/index.html b/static/index.html new file mode 100644 index 0000000..3d4af86 --- /dev/null +++ b/static/index.html @@ -0,0 +1,10 @@ + + + + + RPGedit + + + + + diff --git a/webpack.config.js b/webpack.config.js index 1979538..3bbb7ba 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -6,11 +6,6 @@ module.exports = { path: './build', filename: 'bundle.js' }, - plugins: [ - new HtmlWebpackPlugin({ - title: 'RPGedit' - }) - ], module: { loaders: [ { test: /\.css$/, loader: 'style-loader!css-loader' }, @@ -19,5 +14,8 @@ module.exports = { }, resolve: { extensions: ['', '.ts'] + }, + ts: { + compilerOptions: { noEmit: false } } }; -- cgit v1.2.3