Skip to content

Commit f1e0d65

Browse files
authored
Merge 70def2d into a45aa3b
2 parents a45aa3b + 70def2d commit f1e0d65

File tree

5 files changed

+1076
-635
lines changed

5 files changed

+1076
-635
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
sudo: false
22
language: node_js
3-
node_js: stable
3+
node_js:
4+
- '6'
45

56
env:
67
global:

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323
"build": "grunt default && gulp default",
2424
"lint": "eslint src/ && grunt lint && gulp lint",
2525
"testonly": "./resources/node_test.sh",
26-
"test": "npm run lint && npm run testonly",
26+
"test": "npm run lint && npm run testonly && npm run type-check",
27+
"type-check": "cd type-definitions/tests && flow check",
2728
"perf": "node ./resources/bench.js",
2829
"start": "npm run build && node ./pages/resources/start.js",
2930
"deploy": "(cd ./pages/out && git init && git config user.name \"Travis CI\" && git config user.email \"github@fb.com\" && git add . && git commit -m \"Deploy to GitHub Pages\" && git push --force --quiet \"https://${GH_TOKEN}@github.com/facebook/immutable-js.git\" master:gh-pages > /dev/null 2>1)"
@@ -50,6 +51,7 @@
5051
"estraverse": "1.9.3",
5152
"express": "^4.13.4",
5253
"fbjs-scripts": "^0.5.0",
54+
"flow-bin": "^0.36.0",
5355
"grunt": "0.4.5",
5456
"grunt-cli": "0.1.13",
5557
"grunt-contrib-clean": "0.7.0",

0 commit comments

Comments
 (0)