Skip to content

Commit

Permalink
Fix deploy and scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
felippepuhle committed Nov 1, 2018
1 parent 9478c8b commit 8caeba8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ install: true
cache: yarn

node_js:
- '6'
- '8'
- '10'

Expand Down
8 changes: 6 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,13 @@
"build": "npx tsc --noEmit --pretty && npx babel --extensions '.ts,.tsx' --source-maps --out-dir lib src",
"docz:dev": "docz dev",
"docz:build": "docz build",
"relay": "relay-compiler --src ./tests/components --schema tests/data/schema.graphql --language typescript",
"release:prerelease": "npm run test && npm run build && npm version prerelease && git push --follow-tags && npm publish --tag next --access public",
"release:patch": "npm run test && npm run build && npm version patch && git push --follow-tags && npm publish --access public",
"release:minor": "npm run test && npm run build && npm version minor && git push --follow-tags && npm publish --access public",
"release:major": "npm run test && npm run build && npm version major && git push --follow-tags && npm publish --access public",
"test": "jest --coverage --runInBand --forceExit",
"test:watch": "jest --watchAll --coverage",
"relay": "relay-compiler --src ./tests/components --schema tests/data/schema.graphql --language typescript"
"test:watch": "jest --watchAll --coverage"
},
"jest": {
"transform": {
Expand Down

0 comments on commit 8caeba8

Please sign in to comment.