Skip to content
This repository has been archived by the owner on Aug 11, 2022. It is now read-only.

Commit

Permalink
Fix for the config setting that was breaking the 'bundle' command. Ha…
Browse files Browse the repository at this point in the history
…t tip to mbleigh for finding it.
  • Loading branch information
isaacs committed Aug 28, 2010
1 parent e79f49d commit f6d6fc9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions lib/utils/ini.js
Expand Up @@ -42,11 +42,11 @@ var fs = require("./graceful-fs")
, defaultConfig = require("./default-config")
, configList = new ProtoList()
, TRANS =
{ "default" : 0
, "global" : 1
{ "default" : 4
, "global" : 3
, "user" : 2
, "env" : 3
, "cli" : 4
, "env" : 1
, "cli" : 0
}

configList.push(defaultConfig)
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{ "name" : "npm"
, "description" : "A package manager for node"
, "version" : "0.1.27-9"
, "version" : "0.1.27-10"
, "homepage" : "http://npmjs.org/"
, "author" : "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me)"
, "contributors" :
Expand Down

0 comments on commit f6d6fc9

Please sign in to comment.