Skip to content

Commit 6e54d29

Browse files
committedDec 2, 2017
Remove prebuild
1 parent a77e3b7 commit 6e54d29

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed
 

‎.travis.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,14 @@ node_js:
77
- "5"
88
- "6"
99
- "7"
10+
- "8"
11+
- "9"
1012
addons:
1113
apt:
1214
sources:
1315
- ubuntu-toolchain-r-test
1416
packages:
15-
- g++-4.8
17+
- g++-6
1618
env:
1719
global:
1820
- JOBS=2
@@ -22,8 +24,8 @@ matrix:
2224
fast_finish: true
2325
include:
2426
- os: linux
25-
node_js: "6"
27+
node_js: "8"
2628
env: TEST_SUITE=lint
2729
before_install:
28-
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then export CXX=g++-4.8; fi
30+
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then export CXX=g++-6; fi
2931
script: npm run $TEST_SUITE

‎package.json

+2-3
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"scripts": {
2929
"coverage": "nyc tape test/index.js",
3030
"coverage-lcov": "npm run coverage && nyc report -r lcov",
31-
"install": "node-gyp rebuild || echo \"blake-hash bindings compilation fail. Pure JS implementation will be used.\"",
31+
"install": "npm run rebuild || echo \"blake-hash bindings compilation fail. Pure JS implementation will be used.\"",
3232
"lint": "standard",
3333
"rebuild": "node-gyp rebuild",
3434
"test": "npm run lint && npm run unit",
@@ -37,8 +37,7 @@
3737
"dependencies": {
3838
"bindings": "^1.2.1",
3939
"inherits": "^2.0.3",
40-
"nan": "^2.2.1",
41-
"prebuild-install": "^2.0.0"
40+
"nan": "^2.2.1"
4241
},
4342
"devDependencies": {
4443
"nyc": "^10.0.0",

0 commit comments

Comments
 (0)