Skip to content

Commit 8777cdf

Browse files
committed
Stray commas in bundle command
1 parent 792280a commit 8777cdf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/bundle.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,6 @@ function writeBundleShim (location, depNames, cb) {
6060
+ "if (i) require.paths.shift(__dirname)\n"
6161
+ depNames.map(JSON.stringify).map(function (d) {
6262
return "exports["+d+"] = require('./'+"+d+")\n"
63-
})
63+
}).join("\n")
6464
fs.writeFile(path.join(location, "index.js"), data, cb)
6565
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{ "name" : "npm"
22
, "description" : "A package manager for node"
3-
, "version" : "0.1.27-7"
3+
, "version" : "0.1.27-8"
44
, "homepage" : "http://npmjs.org/"
55
, "author" : "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me)"
66
, "contributors" :

0 commit comments

Comments
 (0)