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

View File

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

View File

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