Skip to content

Commit e3b6bcc

Browse files
committed
After removing ws, node version 10 should work
In my local environment I switched to Fedora 29. Fedora 29 comes with NodeJS version 10. As far as I can say, it works, so let's try to remove the restriction to "<10.x" Signed-off-by: Sheogorath <[email protected]>
1 parent af06d38 commit e3b6bcc

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.travis.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,12 @@ jobs:
2020
before_install:
2121
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version "$YARN_VERSION"
2222
- export PATH="$HOME/.yarn/bin:$PATH"
23+
- env: task=npm-test
24+
node_js:
25+
- 10
26+
before_install:
27+
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version "$YARN_VERSION"
28+
- export PATH="$HOME/.yarn/bin:$PATH"
2329
- env: task=ShellCheck
2430
script:
2531
- shellcheck bin/heroku bin/setup

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@
135135
"xss": "^1.0.3"
136136
},
137137
"engines": {
138-
"node": ">=6.x <10.x"
138+
"node": ">=6.x"
139139
},
140140
"bugs": "https://github.com/hackmdio/codimd/issues",
141141
"keywords": [

0 commit comments

Comments
 (0)