Skip to content

Commit

Permalink
fix(package.json): no postinstall npm script anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
staltz committed Apr 22, 2016
1 parent 2244ccc commit 4011aa1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,10 @@
"mocha": "mocha tests/*.ts tests/**/*.ts --require ts-node/register",
"postmocha": "rm -rf tests/**/*.js",
"test": "npm run lint && npm run mocha",
"prelib": "rm -rf lib/ && mkdirp lib/",
"prelib": "rm -rf lib/ && mkdirp lib/ && typings install",
"lib": "tsc",
"page-content": "npm run lib && node tools/make-toc.js && node tools/make-factories.js && node tools/make-methods.js && cat markdown/header.md markdown/generated-toc.md markdown/overview.md markdown/generated-factories.md markdown/generated-methods.md > .ignore/content.md",
"readme": "npm run page-content && cat markdown/readme-title.md .ignore/content.md > README.md",
"postinstall": "typings install",
"predist": "rm -rf dist/ && mkdirp dist/ && npm run lib",
"dist": "browserify lib/index.js --standalone xstream --outfile dist/xstream.js",
"postdist": "uglifyjs dist/xstream.js -o dist/xstream.min.js",
Expand Down

0 comments on commit 4011aa1

Please sign in to comment.