diff options
author | Sheogorath | 2018-11-19 18:42:21 +0100 |
---|---|---|
committer | Sheogorath | 2018-11-19 18:42:28 +0100 |
commit | e3b6bcc5f8d325d3b224f415003c770a8349cba5 (patch) | |
tree | f3eac64697da2c9fd6e7e9a0aaaad285f5e2ceee | |
parent | af06d38781eaf480d770e4b974ca474af9d38ec6 (diff) |
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 <sheogorath@shivering-isles.com>
-rw-r--r-- | .travis.yml | 6 | ||||
-rw-r--r-- | package.json | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 887299b0..52da97f7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,6 +20,12 @@ jobs: before_install: - curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version "$YARN_VERSION" - export PATH="$HOME/.yarn/bin:$PATH" + - env: task=npm-test + node_js: + - 10 + before_install: + - curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version "$YARN_VERSION" + - export PATH="$HOME/.yarn/bin:$PATH" - env: task=ShellCheck script: - shellcheck bin/heroku bin/setup diff --git a/package.json b/package.json index 2cc9415a..64329869 100644 --- a/package.json +++ b/package.json @@ -135,7 +135,7 @@ "xss": "^1.0.3" }, "engines": { - "node": ">=6.x <10.x" + "node": ">=6.x" }, "bugs": "https://github.com/hackmdio/codimd/issues", "keywords": [ |