Upgrade Commoner and Recast to latest versions.

The Commoner upgrade is a big one because it makes bin/jsx no longer
rewrite module identifiers to be relative by default, which should
reduce confusion for people trying to use it as a standalone
transformer.

Closes #80.
This commit is contained in:
Ben Newman 2013-06-11 15:24:50 -04:00
parent cff4d53a9e
commit 15360056bd
2 changed files with 3 additions and 2 deletions

View File

@ -10,6 +10,7 @@ module.exports = function() {
var args = [
"bin/jsx",
"--cache-dir", ".module-cache",
"--relativize",
config.sourceDir,
config.outputDir
];

View File

@ -36,9 +36,9 @@
},
"dependencies": {
"base62": "~0.1.1",
"commoner": "~0.6.8",
"commoner": "~0.7.0",
"esprima": "git://github.com/facebook/esprima#fb-harmony",
"recast": "~0.3.3",
"recast": "~0.4.5",
"source-map": "~0.1.22"
},
"devDependencies": {