Files
nebula.js/commands/build/command.js
Tobias Åström c5be00c77d feat: migrate all commands to esm (#1932)
* 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
2026-03-13 08:47:13 +01:00

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);
},
};