We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2393a86 commit 0143a81Copy full SHA for 0143a81
circle.yml
@@ -0,0 +1,14 @@
1
+machine:
2
+ node:
3
+ version: 7
4
+
5
+dependencies:
6
+ pre:
7
+ - curl -o- -L https://yarnpkg.com/install.sh | bash
8
+ override:
9
+ - yarn install
10
11
+test:
12
13
+ - yarn lint
14
+ - yarn test
package.json
@@ -14,7 +14,7 @@
"clean": "rimraf lib",
15
"lint": "eslint ./src/*",
16
"test": "jest",
17
- "prepublish": "npm run lint && npm run test && npm run build"
+ "prepublish": "yarn lint && yarn test && yarn build"
18
},
19
"keywords": [
20
"react",
@@ -46,10 +46,9 @@
46
"react-dom": "15.5.4",
47
"rimraf": "2.4.3"
48
49
- "dependencies": {
50
- },
+ "dependencies": {},
51
"peerDependencies": {
52
- "react": ">=0.14.9",
53
- "prop-types": ">=15"
+ "prop-types": ">=15",
+ "react": ">=0.14.9"
54
}
55
0 commit comments