Skip to content

Commit a2c685c

Browse files
Merge pull request #96 from browserify/node-support
2 parents 5d78229 + 90fc829 commit a2c685c

File tree

3 files changed

+91
-46
lines changed

3 files changed

+91
-46
lines changed

.travis.yml

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
language: node_js
2+
os: linux
3+
dist: xenial
24
node_js:
3-
- "8"
4-
- "10"
5+
- "14"
6+
- "13"
57
- "12"
8+
- "11"
9+
- "10"
10+
- "9"
11+
- "8"
12+
- "6"
13+
- "4"
14+
- "iojs"
15+
- "0.12"
16+
- "0.10"
17+
- "0.8"
18+
before_install:
19+
# Old npm certs are untrusted https://github.com/npm/npm/issues/20191
20+
- 'if [ "${TRAVIS_NODE_VERSION}" = "0.8" ]; then export NPM_CONFIG_STRICT_SSL=false; fi'
21+
- 'nvm install-latest-npm'
22+
install:
23+
- 'if [ "${TRAVIS_NODE_VERSION}" = "0.9" ]; then nvm install --latest-npm 0.8 && npm install && nvm use "${TRAVIS_NODE_VERSION}"; else npm install; fi;'
24+
matrix:
25+
fast_finish: true
26+
allow_failures:
27+
- node_js: "0.6"

package-lock.json

Lines changed: 66 additions & 43 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@
2424
"resolve": "1.1.7"
2525
},
2626
"devDependencies": {
27-
"mocha": "1.14.0"
27+
"mocha": "^2.5.3"
2828
}
2929
}

0 commit comments

Comments
 (0)