This patch makes it easier to use jQuery's build system
for other projects, without having to maintain a patch.
Signed-off-by: Asbjørn Sloth Tønnesen <ast@mugami.com>
lint: jquery
@@if test ! -z ${JS_ENGINE}; then \
echo "Checking jQuery against JSLint..."; \
- ${JS_ENGINE} build/jslint-check.js; \
+ ${JS_ENGINE} build/jslint-check.js ${JQ}; \
else \
echo "You must have NodeJS installed in order to test jQuery against JSLint."; \
fi
var JSLINT = require("./lib/jslint").JSLINT,
print = require("sys").print,
- src = require("fs").readFileSync("dist/jquery.js", "utf8");
+ args = process.argv,
+ filename = args[2],
+ src = require("fs").readFileSync(filename, "utf8");
JSLINT(src, { evil: true, forin: true, maxerr: 100 });