From bd044fc919b46d9d8d495e162598e6499f70e64b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20O=E2=80=99Shannessy?= Date: Tue, 18 Jun 2013 15:29:37 -0700 Subject: [PATCH] Use github tarball link for esprima dependency It turns out that (at least for local development) npm has a long standing bug where it doesn't recognize changing dependencies stored as git urls (see https://github.com/isaacs/npm/issues/1727). Luckily npm understand tarballs and GitHub provides tarballs for every commit, so the workaround is easy, though unfortunate. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 1973a387916c4..7b59fa79f8d13 100644 --- a/package.json +++ b/package.json @@ -37,7 +37,7 @@ "dependencies": { "base62": "~0.1.1", "commoner": "~0.7.0", - "esprima": "git://github.com/facebook/esprima#fb-harmony", + "esprima": "https://github.com/facebook/esprima/tarball/ca28795124d45968e62a7b4b336d23a053ac3a84", "recast": "~0.4.8", "source-map": "~0.1.22" },