Fix for jam dependencies

jam install lodash is not working as it is thinking that tar is a dependency.
Just adding a empty dependencies object to the jam section fixes this.

After pulling this, could you republish to the jam repo? No need to bump the package version, just

    jam publish -f


cheers

Former-commit-id: 1364abac5c9005053f0c604ac580f753426b4f8d
This commit is contained in:
Ryan Ramage
2012-11-03 16:24:28 -06:00
parent 16ab179e1d
commit 28ac6623c7

View File

@@ -46,7 +46,8 @@
"rhino"
],
"jam": {
"main": "./lodash.js"
"main": "./lodash.js",
"dependencies": {}
},
"scripts": {
"build": "node build",