Skip to content

Commit 6a7f7f6

Browse files
committed
Merge branch 'franckamayou-master' into develop
2 parents 3f940da + c7f29cd commit 6a7f7f6

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

webpack.config.umd.dev.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ module.exports = {
1010
output: {
1111
path: path.join(__dirname, 'dist'),
1212
filename: 'react-notification-system.js',
13-
libraryTarget: 'umd'
13+
libraryTarget: 'umd',
14+
library: "ReactNotificationSystem"
1415
},
1516
externals: [
1617
{

webpack.config.umd.prod.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ module.exports = {
1010
output: {
1111
path: path.join(__dirname, 'dist'),
1212
filename: 'react-notification-system.min.js',
13-
libraryTarget: 'umd'
13+
libraryTarget: 'umd',
14+
library: "ReactNotificationSystem"
1415
},
1516
devtool: 'source-map',
1617
externals: [

0 commit comments

Comments
 (0)