fix lint errors

This commit is contained in:
Sebastian McKenzie
2014-10-29 20:57:43 +11:00
parent 4dc6147348
commit 163c68dd6a
5 changed files with 23 additions and 17 deletions

View File

@@ -6,7 +6,7 @@ var util = require("./util");
var fs = require("fs");
var _ = require("lodash");
module.exports = function (commander, filenames, opts) {
module.exports = function (commander, filenames) {
var results = [];
var buildResult = function () {
@@ -48,7 +48,7 @@ module.exports = function (commander, filenames, opts) {
return {
map: map,
code: code
}
};
};
var output = function () {
@@ -101,7 +101,7 @@ module.exports = function (commander, filenames, opts) {
});
_.each(_filenames, function (filename, i) {
results.push(util.compile(filename, { _noStrict: i != 0 }));
results.push(util.compile(filename, { _noStrict: +i !== 0 }));
});
output();

View File

@@ -2,8 +2,7 @@
var commander = require("commander");
var transform = require("../../lib/6to5/transform");
var util2 = require("../../lib/6to5/util");
var util = require("./util");
var util = require("../../lib/6to5/util");
var fs = require("fs");
var _ = require("lodash");
@@ -13,8 +12,8 @@ commander.option("-f, --filename [filename]", "Filename to use when reading from
commander.option("-w, --watch", "Recompile files on changes");
commander.option("-m, --modules [modules]", "Module formatter type to use [common]", "common");
commander.option("-w, --whitelist [whitelist]", "Whitelist of transformers to ONLY use", util2.list);
commander.option("-b, --blacklist [blacklist]", "Blacklist of transformers to NOT use", util2.list);
commander.option("-w, --whitelist [whitelist]", "Whitelist of transformers to ONLY use", util.list);
commander.option("-b, --blacklist [blacklist]", "Blacklist of transformers to NOT use", util.list);
commander.option("-o, --out-file [out]", "Compile all input files into a single file");
commander.option("-d, --out-dir [out]", "Compile an input directory of modules into an output directory");