Skip to content

Commit

Permalink
Added exact version dependencies in package.json and Cakefile.
Browse files Browse the repository at this point in the history
  • Loading branch information
assaf committed Dec 29, 2010
1 parent b6c883a commit 46dd292
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ zombie.js-changelog(1) -- Changelog

## Version 0.7.8 2010-12-29

Fixed wrong location of package.json.
Fixed issue 8, wrong location of package.json.


## Version 0.7.7 2010-12-28
Expand Down
8 changes: 4 additions & 4 deletions Cakefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ onerror = (err)->
# Setup development dependencies, not part of runtime dependencies.
task "setup", "Install development dependencies", ->
log "Need Vows and Express to run test suite, installing ...", green
exec "npm install \"vows@>=0.5.0\"", onerror
exec "npm install \"express@>=1.0.0\"", onerror
exec "npm install \"vows@0.5.2\"", onerror
exec "npm install \"express@1.0.0\"", onerror
log "Need Ronn and Docco to generate documentation, installing ...", green
exec "npm install \"ronn@>=0.3.0\"", onerror
exec "npm install \"docco@>=0.3.0\"", onerror
exec "npm install \"ronn@0.3.5\"", onerror
exec "npm install \"docco@0.3.0\"", onerror
log "Need runtime dependencies, installing ...", green
fs.readFile "package.json", "utf8", (err, package)->
for name, version of JSON.parse(package).dependencies
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
"node": "*"
},
"dependencies": {
"htmlparser": ">= 1.7.3",
"html5": ">= 0.2.5",
"jsdom": ">= 0.1.21"
"htmlparser": "1.7.3",
"html5": "0.2.5",
"jsdom": "0.1.21"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 46dd292

Please sign in to comment.