overlord-cli 3.8.0 → 3.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/ovld.mjs +3 -4
- package/package.json +1 -1
package/bin/ovld.mjs
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
|
-
*
|
|
5
|
-
* All CLI source files live in
|
|
6
|
-
* exists only so that `node bin/ovld.mjs` works during local development.
|
|
4
|
+
* Canonical CLI entrypoint. Used by both the npm package and the Electron app.
|
|
5
|
+
* All CLI source files live in _cli/ alongside this file.
|
|
7
6
|
*/
|
|
8
7
|
|
|
9
|
-
import { runCli } from '
|
|
8
|
+
import { runCli } from './_cli/index.mjs';
|
|
10
9
|
|
|
11
10
|
runCli({ primaryCommand: 'ovld' }).catch((error) => {
|
|
12
11
|
console.error(error instanceof Error ? error.message : error);
|