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

Commit 08a028a

Browse files
committed
fix(deps): upgrade to latest
1 parent c11b978 commit 08a028a

File tree

4 files changed

+352
-261
lines changed

4 files changed

+352
-261
lines changed

.flowconfig

+5-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,14 @@
33
.*/node_modules/.*/__tests__/
44
.*/node_modules/.*/test/
55
.*/node_modules/.*/tests/
6-
.*/node_modules/eslint-plugin-jsx-a11y/
76

87
[libs]
98
definitions/
109

10+
[lints]
11+
sketchy-null=error
12+
untyped-type-import=error
13+
1114
[options]
1215
emoji=true
1316

@@ -16,4 +19,4 @@ experimental.const_params=true
1619
suppress_comment=\\(.\\|\n\\)*\\$ExpectError
1720

1821
[version]
19-
^0.50.0
22+
^0.52.0

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ notifications:
1616
script:
1717
- npm run test
1818
after_success:
19-
- npm run release
19+
- npm run semantic-release

package.json

+7-9
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@
2525
"test": "run-p --silent typecheck lint",
2626
"precommit": "lint-staged",
2727
"commitmsg": "validate-commit-msg",
28-
"prepush": "nyr test",
29-
"release": "semantic-release pre && npm publish && semantic-release post",
28+
"prepush": "yarn test",
3029
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
3130
},
3231
"lint-staged": {
@@ -40,19 +39,18 @@
4039
}
4140
},
4241
"peerDependencies": {
43-
"flow-bin": "0.42.0 - 0.50.0"
42+
"flow-bin": "0.42.0 - 0.52.0"
4443
},
4544
"devDependencies": {
46-
"eslint": "^3.19.0",
47-
"eslint-config-anvilabs": "^9.2.0",
48-
"flow-bin": "^0.50.0",
45+
"eslint": "^4.3.0",
46+
"eslint-config-anvilabs": "^10.2.0",
47+
"flow-bin": "^0.52.0",
4948
"husky": "^0.14.3",
50-
"lint-staged": "^4.0.1",
49+
"lint-staged": "^4.0.2",
5150
"lodash": "^4.17.4",
5251
"npm-run-all": "^4.0.2",
53-
"nyr": "^1.1.0",
5452
"prettier": "^1.5.3",
5553
"semantic-release": "^6.3.6",
56-
"validate-commit-msg": "^2.12.2"
54+
"validate-commit-msg": "^2.14.0"
5755
}
5856
}

0 commit comments

Comments
 (0)