I'm running into a parsing issue (Illegal return) on line 249 of cli.js:
if (params.command === 'export') {
return dyno.describeTable(function(err, desc) {
if (err) {
console.error(err);
process.exit(1);
}
console.log(cleanDescription(desc));
scan();
});
}
I am pretty sure this is because return is being used outside of a function. This should probably be refactored.
cc @mapbox/atlas
I'm running into a parsing issue (
Illegal return) on line 249 of cli.js:I am pretty sure this is because
returnis being used outside of a function. This should probably be refactored.cc @mapbox/atlas