Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .flowconfig
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ flow-typed
[options]

[version]
0.57.3
0.76.0
7 changes: 4 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ node_js:
script:
- npm run eslint
- npm run flow
- npm run prepublish
- cd examples/composition && npm i && npm run build && ./node_modules/.bin/flow && cd ../..
- cd examples/simple && npm i && npm run build && ./node_modules/.bin/flow && cd ../..
- npm run build
- npm run test
- cd examples/composition && npm i && npm run flow && npm run build && npm run test && cd ../..
- cd examples/simple && npm i && npm run flow && npm run build && npm run test && cd ../..
3 changes: 2 additions & 1 deletion examples/composition/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
"eject": "react-scripts eject",
"flow": "flow"
},
"devDependencies": {
"flow-bin": "^0.57.3"
Expand Down
3 changes: 2 additions & 1 deletion examples/simple/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
"eject": "react-scripts eject",
"flow": "flow"
},
"devDependencies": {
"flow-bin": "^0.57.3"
Expand Down
Loading