1
0
mirror of synced 2025-12-18 12:39:34 +08:00

command line interface and updates for npm

This commit is contained in:
Zach Carter
2011-05-01 17:36:27 -04:00
parent ac7b47930b
commit 9c1023cfb1
12 changed files with 486 additions and 357 deletions

9
scripts/bundle.js Normal file
View File

@@ -0,0 +1,9 @@
var fs = require('fs');
var sys = require('sys');
var source = "var jsonlint = (function(){var require=true,module=false;var exports={};" +
fs.readFileSync(__dirname+'/../lib/jsonlint.js', 'utf8') +
"return exports;})()";
sys.puts(source);