mirror of
https://github.com/qlik-oss/nebula.js.git
synced 2026-06-01 22:00:35 -04:00
* feat: migrate all commands to esm * chore: fix server build * chore: fix serve * chore: adjust serve * chore: adjust serve * chore: serve esm only * chore: serve esm only
15 lines
274 B
JavaScript
15 lines
274 B
JavaScript
/* eslint-disable import/extensions */
|
|
import build from './lib/build.js';
|
|
import init from './lib/init-config.js';
|
|
|
|
export default {
|
|
command: 'build',
|
|
desc: 'Build visualization',
|
|
builder(yargs) {
|
|
init(yargs).argv;
|
|
},
|
|
handler(argv) {
|
|
build(argv);
|
|
},
|
|
};
|