Skip to content

Commit ac82f85

Browse files
committed
Start bundling node-pre-gyp per #753
1 parent a8df919 commit ac82f85

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ For support you can open a [github issue](https://github.com/voodootikigod/node-
88

99
***
1010

11-
You're reading the latest README for `[email protected].1` the latest `2.x` release.
11+
You're reading the latest README for `[email protected].2` the latest `2.x` release.
1212

1313
- [`[email protected]` docs are here](https://github.com/voodootikigod/node-serialport/blob/v1.7.4/README.md) it was the last `1.x` release
1414

changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Version 2.1.2
2+
-------------
3+
- Start bundling node-pre-gyp but upgrade it to the latest as the previous version doesn't install
4+
15
Version 2.1.1
26
-------------
37
- `.list` errors are consistent across platforms and no longer has blocking `statSync` calls

package.json

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "serialport",
3-
"version": "2.1.1",
3+
"version": "2.1.2",
44
"description": "Node.js package to access serial ports. Welcome your robotic javascript overlords. Better yet, program them!",
55
"author": {
66
"name": "Chris Williams",
@@ -10,7 +10,7 @@
1010
"binary": {
1111
"module_name": "serialport",
1212
"module_path": "build/{configuration}/",
13-
"host": "https://github.com/voodootikigod/node-serialport/releases/download/2.1.1"
13+
"host": "https://github.com/voodootikigod/node-serialport/releases/download/2.1.2"
1414
},
1515
"main": "./lib/serialport",
1616
"repository": {
@@ -53,7 +53,7 @@
5353
"bluebird": "^3.3.5",
5454
"debug": "^2.1.1",
5555
"nan": "~2.2.1",
56-
"node-pre-gyp": "0.6.x",
56+
"node-pre-gyp": "^0.6.26",
5757
"node-pre-gyp-github": "^1.1.0",
5858
"object.assign": "^4.0.3",
5959
"optimist": "~0.6.1",
@@ -74,6 +74,10 @@
7474
"sinon": "^1.17.3",
7575
"sinon-chai": "^2.8.0"
7676
},
77+
"bundledDependencies": [
78+
"node-pre-gyp",
79+
"node-pre-gyp-github"
80+
],
7781
"engines": {
7882
"node": ">= 0.10.0"
7983
},
@@ -83,7 +87,6 @@
8387
},
8488
"license": "MIT",
8589
"scripts": {
86-
"preinstall": "npm install node-pre-gyp node-pre-gyp-github",
8790
"install": "node-pre-gyp install --fallback-to-build",
8891
"rebuild": "npm rebuild && node-pre-gyp rebuild",
8992
"stress": "mocha --no-timeouts test/arduinoTest/stress.js",

0 commit comments

Comments
 (0)