neon build broken on nodejs v12.1.0

This commit is contained in:
freestrings 2019-05-07 00:02:27 +09:00
parent 3792e0014d
commit 671ca83eed
3 changed files with 8 additions and 4 deletions

View File

@ -45,7 +45,6 @@ matrix:
- language: node_js - language: node_js
os: linux os: linux
node_js: node_js:
- 'node'
- '11' - '11'
- '10' - '10'
- '9' - '9'
@ -55,6 +54,7 @@ matrix:
- sh /tmp/rustup.sh -y - sh /tmp/rustup.sh -y
- export PATH="$HOME/.cargo/bin:$PATH" - export PATH="$HOME/.cargo/bin:$PATH"
- source "$HOME/.cargo/env" - source "$HOME/.cargo/env"
- npm install -g neon-cli
- cd nodejs - cd nodejs
- node -v - node -v
- npm -v - npm -v
@ -64,7 +64,6 @@ matrix:
- language: node_js - language: node_js
os: osx os: osx
node_js: node_js:
- 'node'
- '11' - '11'
- '10' - '10'
- '9' - '9'
@ -74,6 +73,7 @@ matrix:
- sh /tmp/rustup.sh -y - sh /tmp/rustup.sh -y
- export PATH="$HOME/.cargo/bin:$PATH" - export PATH="$HOME/.cargo/bin:$PATH"
- source "$HOME/.cargo/env" - source "$HOME/.cargo/env"
- npm install -g neon-cli
- cd nodejs - cd nodejs
- node -v - node -v
- npm -v - npm -v

View File

@ -1,6 +1,6 @@
{ {
"name": "jsonpath-rs", "name": "jsonpath-rs",
"version": "0.1.8", "version": "0.1.9",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {

View File

@ -1,6 +1,6 @@
{ {
"name": "jsonpath-rs", "name": "jsonpath-rs",
"version": "0.1.8", "version": "0.1.9",
"description": "It is JsonPath implementation. The core implementation is written in Rust", "description": "It is JsonPath implementation. The core implementation is written in Rust",
"author": "Changseok Han <freestrings@gmail.com>", "author": "Changseok Han <freestrings@gmail.com>",
"license": "MIT", "license": "MIT",
@ -26,5 +26,9 @@
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/freestrings/jsonpath.git" "url": "git+https://github.com/freestrings/jsonpath.git"
},
"engineStrict": true,
"engines": {
"node": ">=8.0 <12.0"
} }
} }