Skip to content
This repository was archived by the owner on May 31, 2020. It is now read-only.

Commit 548f81b

Browse files
committed
add check param for flow
1 parent febab93 commit 548f81b

File tree

7 files changed

+7
-6
lines changed

7 files changed

+7
-6
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@ script:
77
- ./node_modules/.bin/lerna bootstrap --hoist
88
- npm run build
99
- npm run lint
10+
- npm run flow

packages/atomic-block/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"build": "./node_modules/.bin/rollup -c",
1515
"start": "./node_modules/.bin/rollup -c -w",
1616
"prepare": "yarn run build",
17-
"flow": "./node_modules/.bin/flow",
17+
"flow": "./node_modules/.bin/flow check",
1818
"predeploy": "cd example && yarn install && yarn run build",
1919
"deploy": "gh-pages -d example/build"
2020
},

packages/autocomplete/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"test": "cross-env CI=1 react-scripts test --env=jsdom",
1313
"test:watch": "react-scripts test --env=jsdom",
1414
"build": "./node_modules/.bin/rollup -c",
15-
"flow": "./node_modules/.bin/flow",
15+
"flow": "./node_modules/.bin/flow check",
1616
"start": "./node_modules/.bin/rollup -c -w",
1717
"prepare": "yarn run build",
1818
"predeploy": "cd example && yarn install && yarn run build",

packages/block-type-toggle/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"test:watch": "react-scripts test --env=jsdom",
1414
"build": "./node_modules/.bin/rollup -c",
1515
"start": "./node_modules/.bin/rollup -c -w",
16-
"flow": "./node_modules/.bin/flow",
16+
"flow": "./node_modules/.bin/flow check",
1717
"prepare": "yarn run build",
1818
"predeploy": "cd example && yarn install && yarn run build",
1919
"deploy": "gh-pages -d example/build"

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"build": "rimraf dist && ./node_modules/.bin/rollup -c && yarn build:flow",
1515
"build:flow": "./node_modules/.bin/flow-copy-source -v -i '**/__tests__/**' src dist",
1616
"start": "./node_modules/.bin/rollup -c -w",
17-
"flow": "./node_modules/.bin/flow",
17+
"flow": "./node_modules/.bin/flow check",
1818
"prepare": "yarn run build && yarn build:flow",
1919
"predeploy": "cd example && yarn install && yarn run build",
2020
"deploy": "gh-pages -d example/build"

packages/inline-style-toggle/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"jsnext:main": "dist/index.es.js",
1111
"scripts": {
1212
"test": "cross-env CI=1 react-scripts test --env=jsdom",
13-
"flow": "./node_modules/.bin/flow",
13+
"flow": "./node_modules/.bin/flow check",
1414
"test:watch": "react-scripts test --env=jsdom",
1515
"build": "./node_modules/.bin/rollup -c",
1616
"start": "./node_modules/.bin/rollup -c -w",

packages/utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"scripts": {
1212
"test": "cross-env CI=1 react-scripts test --env=jsdom",
1313
"test:watch": "react-scripts test --env=jsdom",
14-
"flow": "./node_modules/.bin/flow",
14+
"flow": "./node_modules/.bin/flow check",
1515
"build": "./node_modules/.bin/rollup -c",
1616
"start": "./node_modules/.bin/rollup -c -w",
1717
"prepare": "yarn run build",

0 commit comments

Comments
 (0)