From 28ac6623c710a54344edab1970a63502b5b16f1c Mon Sep 17 00:00:00 2001 From: Ryan Ramage Date: Sat, 3 Nov 2012 16:24:28 -0600 Subject: [PATCH] Fix for jam dependencies MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 2d495ee5a..9d62ccf99 100644 --- a/package.json +++ b/package.json @@ -46,7 +46,8 @@ "rhino" ], "jam": { - "main": "./lodash.js" + "main": "./lodash.js", + "dependencies": {} }, "scripts": { "build": "node build",