Skip to content

Commit

Permalink
bumped patch release
Browse files Browse the repository at this point in the history
  • Loading branch information
hally9k committed May 2, 2017
2 parents d63c54e + a1a5391 commit f19c4fe
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "redux-ui-router",
"version": "0.7.1-rc.2",
"version": "0.7.1-rc.3",
"description": "Redux middleware for use with Angular UI Router",
"main": "./lib/index.js",
"scripts": {
Expand All @@ -9,8 +9,8 @@
"test": "npm run lint; NODE_ENV=test node node_modules/.bin/mocha --compilers js:babel-register --recursive --require src/__tests__/index.js src/**/*.test.js",
"test:live": "npm run lint; NODE_ENV=test node node_modules/.bin/mocha --compilers js:babel-register --recursive --require src/__tests__/index.js -w src/**/*.test.js",
"build": "npm run clean; npm run test; node node_modules/.bin/babel src --out-dir lib",
"bundle:dev": "webpack --output-library=ngReduxUiRouter --output-library-target=umd lib/index.js dist/redux-ui-router.js",
"bundle:prod": "webpack -p --output-library=ngReduxUiRouter --output-library-target=umd lib/index.js dist/redux-ui-router.min.js",
"bundle:dev": "webpack lib/index.js dist/redux-ui-router.js",
"bundle:prod": "webpack -p lib/index.js dist/redux-ui-router.min.js",
"prepublish": "npm run build && npm run bundle:dev && npm run bundle:prod"
},
"repository": {
Expand Down
7 changes: 7 additions & 0 deletions webpack.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
module.exports = {
output: {
library: 'ngReduxUiRouter',
libraryTarget: 'umd'
},
externals: ['angular', 'angular-ui-router']
};

0 comments on commit f19c4fe

Please sign in to comment.