Skip to content

Commit 012e088

Browse files
committed
Merge branch 'release/0.2.15'
2 parents f7ad149 + 4e124bd commit 012e088

4 files changed

Lines changed: 9 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CHANGELOG
22

3+
## 0.2.15 - Aug 1, 2017
4+
5+
* UMD build now specifies the library name (thanks to @franckamayou)
6+
37
## 0.2.14 - May 3, 2017
48

59
* Ability to [edit notifications](https://github.com/igorprado/react-notification-system#removenotificationnotification). (thanks to @syndbg)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-notification-system",
3-
"version": "0.2.14",
3+
"version": "0.2.15",
44
"description": "A React Notification System fully customized",
55
"main": "dist/NotificationSystem.js",
66
"scripts": {

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)