Skip to content

Commit

Permalink
.gitignore and package.json changes
Browse files Browse the repository at this point in the history
 - changed to ~a.b.c notation for required versions because npm
   gave an error trying to find uglify 1.0.x (there's no 1.0.0)

 - added node_modules to .gitignore (so no need to clean house
   after a default npm install)
  • Loading branch information
RandomEtc committed Aug 23, 2011
1 parent 74c8fb7 commit a8afd6b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -0,0 +1 @@
node_modules
8 changes: 4 additions & 4 deletions package.json
Expand Up @@ -19,12 +19,12 @@
"url" : "git://github.com/stamen/modestmaps-js.git"
}],
"engines": {
"node": "= 0.4.x"
"node": "~0.4.0"
},
"devDependencies": {
"docco": "= 0.3.0",
"expresso": "= 0.7.x",
"uglify-js": "= 1.0.x"
"docco": "~0.3.0",
"expresso": "~0.7.0",
"uglify-js": "~1.0.0"
},
"directories": { }
}

0 comments on commit a8afd6b

Please sign in to comment.