Skip to content

Commit

Permalink
Bumped up the version and updated changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
sconix committed Mar 27, 2017
1 parent 5b0432e commit c4ec851
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2.5.2 Bug fix release

- Fixed umd bundle to use the new name

2.5.0 Last 2.x release

- Preparing for moving to Angular 4.x
Expand Down
6 changes: 3 additions & 3 deletions config/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ module.exports = {
hints: false
},
entry: {
'angular2-perfect-scrollbar.umd': './src/index.ts',
'angular2-perfect-scrollbar.umd.min': './src/index.ts'
'ngx-perfect-scrollbar.umd': './src/index.ts',
'ngx-perfect-scrollbar.umd.min': './src/index.ts'
},
output: {
path: './bundles',
filename: '[name].js',
library: 'angular2-perfect-scrollbar',
library: 'ngx-perfect-scrollbar',
libraryTarget: 'umd',
umdNamedDefine: true
},
Expand Down
2 changes: 1 addition & 1 deletion example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "ngx-perfect-scrollbar-example",
"description": "Example app for the ngx-perfect-scrollbar",
"license": "MIT",
"version": "2.5.0",
"version": "2.5.2",
"tslint": {
"extends": "./tslint.json"
},
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Angular wrapper library for Perfect Scrollbar",
"bugs": "https://github.com/zefoy/ngx-perfect-scrollbar/issues",
"license": "MIT",
"version": "2.5.0",
"version": "2.5.2",
"main": "bundles/ngx-perfect-scrollbar.umd.js",
"module": "./dist/index.js",
"typings": "./dist/index.d.ts",
Expand Down

0 comments on commit c4ec851

Please sign in to comment.