Skip to content

Commit

Permalink
build steps
Browse files Browse the repository at this point in the history
  • Loading branch information
tomkis committed Feb 21, 2017
1 parent abe35f3 commit 2ffa05c
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
6 changes: 5 additions & 1 deletion packages/prism-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@
"build:commonjs": "tsc -p ./ --module commonjs --outDir lib",
"build": "npm run build:commonjs",
"test": "jest",
"test:watch": "npm run test -- --watch"
"test:watch": "npm run test -- --watch",
"preversion": "npm test",
"version": "npm run build",
"postversion": "git push && git push --tags",
"prepublish": "npm run build"
},
"author": "Tomas Weiss <tomasw@salsitasoft.com>",
"bugs": {
Expand Down
6 changes: 5 additions & 1 deletion packages/prism-redux/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@
"build:commonjs": "tsc -p ./ --module commonjs --outDir lib",
"build": "rm -rf lib && npm run build:commonjs",
"test": "jest",
"test:watch": "npm run test -- --watch"
"test:watch": "npm run test -- --watch",
"preversion": "npm test",
"version": "npm run build",
"postversion": "git push && git push --tags",
"prepublish": "npm run build"
},
"author": "Tomas Weiss <tomasw@salsitasoft.com>",
"bugs": {
Expand Down
7 changes: 5 additions & 2 deletions packages/prism/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
{
"name": "prism",
"version": "0.1.0",
"version": "4.0.0",
"description": "React / Redux action composition made simple",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"build:commonjs": "tsc -p ./ --module commonjs --outDir lib",
"build": "npm run build:commonjs"
"build": "npm run build:commonjs",
"version": "npm run build",
"postversion": "git push && git push --tags",
"prepublish": "npm run build"
},
"author": "Tomas Weiss <tomasw@salsitasoft.com>",
"bugs": {
Expand Down

0 comments on commit 2ffa05c

Please sign in to comment.