Change webpack.config to enforce using package name as library name

This commit is contained in:
Matt Mazzola 2016-06-28 14:51:13 -07:00
Родитель 314967370d
Коммит ec41c9ee15
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -1,3 +1,5 @@
var package = require('./package.json');
module.exports = {
entry: {
'router': './src/router.ts'
@ -5,7 +7,7 @@ module.exports = {
output: {
path: __dirname + "/dist",
filename: '[name].js',
library: 'powerbi-router',
library: package.name,
libraryTarget: 'umd'
},
devtool: 'source-map',