Files
2025-12-02 16:27:21 +00:00

22 lines
381 B
JavaScript
Executable File

#!/usr/bin/env node
require('magicli')({
commands: {
'convert-excel-to-json': {
options: [{
name: 'config',
description: 'A full config in a valid JSON format',
type: 'JSON'
},{
name: 'sourceFile',
description: `The sourceFile path (to be used without the 'config' parameter`,
type: 'String'
}]
}
},
pipe: {
after: JSON.stringify
}
});