From d20101c9817134201a084c2cdd5c3194acf996e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B3zsef=20Farkas?= Date: Sat, 9 Jul 2016 17:34:56 +0200 Subject: [PATCH] Fix webpack module loading order --- webpack.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webpack.config.js b/webpack.config.js index b4ebdeb7..136cbd22 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -2,7 +2,7 @@ var SvgStore = require('webpack-svgstore-plugin'); module.exports = { - entry: ['reflect-metadata', 'zone.js', 'es6-shim', "./src/boot.ts"], + entry: ['es6-shim', 'zone.js', 'reflect-metadata', './src/boot.ts'], output: { path: __dirname + "/build", filename: "uhk.js"