Skip to content
This repository has been archived by the owner on Oct 26, 2021. It is now read-only.

Commit

Permalink
Fix build-production script
Browse files Browse the repository at this point in the history
  • Loading branch information
Andre Medeiros committed Jan 30, 2015
1 parent a2191cf commit 89f8555
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions TODO
Expand Up @@ -63,6 +63,9 @@ DONE Add withLatestFrom example
DONE Review all RxJS operators to remove deprecated
>>> v1.2.0

DONE Fix build-production script
>>> v1.2.1

TODO Build scripts to replace gulp (?)
TODO Fix referential transparency inconsistency
Replace models/sandbox-ouput combineLatest with combinePrevious
Expand Down
4 changes: 2 additions & 2 deletions dist/js/app.js
Expand Up @@ -23513,8 +23513,8 @@ module.exports={
"6to5": "mkdir -p ignore/es5src && 6to5 src --out-dir ignore/es5src",
"browserify": "browserify -e ignore/es5src/app.js --outfile dist/js/app.js",
"build": "npm run less && npm run 6to5 && npm run browserify",
"build-production": "npm run less && npm run browserify-production && npm run uglify",
"uglify": "uglifyjs dist/cycle.js -o dist/cycle.min.js",
"build-production": "npm run less && npm run 6to5 && npm run browserify && npm run uglify",
"uglify": "uglifyjs dist/js/app.js -o dist/js/app.js",
"docs": "node ./scripts/make-api-docs.js",
"release": "npm run release-patch",
"release-patch": "git checkout master && npm run build && git commit -a -m 'Compiled' && npm version patch && git push origin master --tags && npm publish",
Expand Down
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -27,8 +27,8 @@
"6to5": "mkdir -p ignore/es5src && 6to5 src --out-dir ignore/es5src",
"browserify": "browserify -e ignore/es5src/app.js --outfile dist/js/app.js",
"build": "npm run less && npm run 6to5 && npm run browserify",
"build-production": "npm run less && npm run browserify-production && npm run uglify",
"uglify": "uglifyjs dist/cycle.js -o dist/cycle.min.js",
"build-production": "npm run less && npm run 6to5 && npm run browserify && npm run uglify",
"uglify": "uglifyjs dist/js/app.js -o dist/js/app.js",
"docs": "node ./scripts/make-api-docs.js",
"release": "npm run release-patch",
"release-patch": "git checkout master && npm run build && git commit -a -m 'Compiled' && npm version patch && git push origin master --tags && npm publish",
Expand Down

0 comments on commit 89f8555

Please sign in to comment.