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.
This commit is contained in:
Paul O’Shannessy 2013-06-18 15:29:37 -07:00
parent 870a29d9b0
commit bd044fc919
1 changed files with 1 additions and 1 deletions

View File

@ -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"
},