@omnidev-ai/cli 0.5.0 → 0.5.2
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/dist/index.js +3 -4
- package/package.json +36 -35
package/dist/index.js
CHANGED
|
@@ -941,10 +941,8 @@ async function runSync() {
|
|
|
941
941
|
}
|
|
942
942
|
}
|
|
943
943
|
|
|
944
|
-
// src/lib/debug.ts
|
|
945
|
-
import { debug } from "@omnidev-ai/core";
|
|
946
|
-
|
|
947
944
|
// src/lib/dynamic-app.ts
|
|
945
|
+
import { debug } from "@omnidev-ai/core";
|
|
948
946
|
async function buildDynamicApp() {
|
|
949
947
|
const routes = {
|
|
950
948
|
init: initCommand,
|
|
@@ -1057,8 +1055,9 @@ async function loadCapabilityExport(capability) {
|
|
|
1057
1055
|
}
|
|
1058
1056
|
|
|
1059
1057
|
// src/index.ts
|
|
1058
|
+
import { debug as debug2 } from "@omnidev-ai/core";
|
|
1060
1059
|
var app = await buildDynamicApp();
|
|
1061
|
-
|
|
1060
|
+
debug2("CLI startup", {
|
|
1062
1061
|
arguments: process.argv.slice(2),
|
|
1063
1062
|
cwd: process.cwd()
|
|
1064
1063
|
});
|
package/package.json
CHANGED
|
@@ -1,37 +1,38 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
2
|
+
"name": "@omnidev-ai/cli",
|
|
3
|
+
"version": "0.5.2",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/Nikola-Milovic/omnidev.git",
|
|
9
|
+
"directory": "packages/cli"
|
|
10
|
+
},
|
|
11
|
+
"exports": {
|
|
12
|
+
".": "./dist/index.js"
|
|
13
|
+
},
|
|
14
|
+
"bin": {
|
|
15
|
+
"omnidev": "./dist/index.js"
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"dist",
|
|
19
|
+
"README.md"
|
|
20
|
+
],
|
|
21
|
+
"publishConfig": {
|
|
22
|
+
"access": "public",
|
|
23
|
+
"registry": "https://registry.npmjs.org"
|
|
24
|
+
},
|
|
25
|
+
"scripts": {
|
|
26
|
+
"typecheck": "tsc --noEmit",
|
|
27
|
+
"build": "bunup"
|
|
28
|
+
},
|
|
29
|
+
"dependencies": {
|
|
30
|
+
"@inquirer/prompts": "^8.1.0",
|
|
31
|
+
"@omnidev-ai/core": "0.4.0",
|
|
32
|
+
"@stricli/core": "^1.2.5"
|
|
33
|
+
},
|
|
34
|
+
"devDependencies": {
|
|
35
|
+
"@omnidev-ai/adapters": "0.0.1",
|
|
36
|
+
"bunup": "^0.16.20"
|
|
37
|
+
}
|
|
37
38
|
}
|