Skip to content

Commit 95a8a99

Browse files
committed
Bundle dependencies of the install script
The install script requires the tar package dependency to be completely installed before it runs. npm@2 does not guarantee this (see npm/npm#5001). It can be guaranteed only by bundling the tar dependency.
1 parent 2d70ea2 commit 95a8a99

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99
"nan": "2.x",
1010
"tar": "2.x"
1111
},
12+
"bundleDependencies": [
13+
"tar"
14+
],
1215
"devDependencies": {
1316
"node-gyp": "2.x",
1417
"tap": "^5.7.x"

0 commit comments

Comments
 (0)