Skip to content

Commit

Permalink
Merge branch 'release/0.2.15'
Browse files Browse the repository at this point in the history
  • Loading branch information
igorprado committed Aug 1, 2017
2 parents f7ad149 + 4e124bd commit 012e088
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

## 0.2.15 - Aug 1, 2017

* UMD build now specifies the library name (thanks to @franckamayou)

## 0.2.14 - May 3, 2017

* Ability to [edit notifications](https://github.com/igorprado/react-notification-system#removenotificationnotification). (thanks to @syndbg)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-notification-system",
"version": "0.2.14",
"version": "0.2.15",
"description": "A React Notification System fully customized",
"main": "dist/NotificationSystem.js",
"scripts": {
Expand Down
3 changes: 2 additions & 1 deletion webpack.config.umd.dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ module.exports = {
output: {
path: path.join(__dirname, 'dist'),
filename: 'react-notification-system.js',
libraryTarget: 'umd'
libraryTarget: 'umd',
library: "ReactNotificationSystem"
},
externals: [
{
Expand Down
3 changes: 2 additions & 1 deletion webpack.config.umd.prod.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ module.exports = {
output: {
path: path.join(__dirname, 'dist'),
filename: 'react-notification-system.min.js',
libraryTarget: 'umd'
libraryTarget: 'umd',
library: "ReactNotificationSystem"
},
devtool: 'source-map',
externals: [
Expand Down

0 comments on commit 012e088

Please sign in to comment.