CLI code refactor (#665)

* CLI refactor

* es6 rollback

* Travis fix

* syntax fix

* clustered require statements

* travis debug

* travis debug
This commit is contained in:
Vibhor Gupta
2019-01-31 23:31:03 +05:30
committed by Jeffrey Warren
parent 0cd3156c06
commit d0bf9de71a
10 changed files with 1870 additions and 1698 deletions

View File

@@ -132,7 +132,7 @@ ImageSequencer = function ImageSequencer(options) {
// Config is an object which contains the runtime configuration like progress bar
// information and index from which the sequencer should run
function run(config, t_image, t_from) {
let progressObj, index = 0;
var progressObj, index = 0;
config = config || { mode: 'no-arg' };
if (config.index) index = config.index;
@@ -455,7 +455,7 @@ ImageSequencer = function ImageSequencer(options) {
createMetaModule: createMetaModule,
saveSequence: saveSequence,
loadModules: loadModules,
//other functions
log: log,
objTypeOf: objTypeOf,