Skip to content

Commit

Permalink
ci(umd): remove umd builds
Browse files Browse the repository at this point in the history
removed umd build as they are not tested and no one really uses them
  • Loading branch information
TimeRaider committed Nov 2, 2016
1 parent b48681d commit 6e13fad
Showing 1 changed file with 5 additions and 9 deletions.
14 changes: 5 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,15 @@
"description": "redux router that syncs history with store",
"main": "dist/index.js",
"scripts": {
"build-package": "npm run test && npm run build-all",
"build-all": "npm run clean && npm run build-dist && npm run build-umd && npm run build-umd-min",
"build-dist": "npm run clean && ./node_modules/.bin/babel src --out-dir dist",
"build-dist-watch": "npm run clean && ./node_modules/.bin/babel src --out-dir dist -s -w",
"build-examples": "npm run build-dist && (cd examples && npm i && npm start)",
"build-umd": "./node_modules/.bin/webpack --bail --config config/webpack/umd.js",
"build-umd-min": "./node_modules/.bin/webpack --bail --config config/webpack/umd.min.js",
"clean": "./node_modules/.bin/rimraf dist umd",
"build": "npm run test && npm run clean && ./node_modules/.bin/babel src --out-dir dist",
"build:watch": "npm run clean && ./node_modules/.bin/babel src --out-dir dist -s -w",
"build:examples": "npm run build && (cd examples && npm i && npm start)",
"clean": "./node_modules/.bin/rimraf dist",
"commit": "./node_modules/.bin/git-cz",
"lint": "./node_modules/.bin/eslint --ignore-path=.gitignore --fix ./src",
"lint-prod": "NODE_ENV='production' npm run lint",
"version": " ./node_modules/.bin/conventional-changelog -i CHANGELOG.md -s && git add CHANGELOG.md",
"prepublish": "npm run build-package",
"prepublish": "npm run build",
"precommit": "npm test",
"commitmsg": "./node_modules/.bin/validate-commit-msg",
"test": "npm run lint-prod && ./node_modules/.bin/ava --verbose",
Expand Down

0 comments on commit 6e13fad

Please sign in to comment.