@omnidev-ai/cli 0.11.0 → 0.11.1
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 +2 -3
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -1119,8 +1119,7 @@ import { buildCommand as buildCommand4 } from "@stricli/core";
|
|
|
1119
1119
|
// src/prompts/provider.ts
|
|
1120
1120
|
import { checkbox, confirm } from "@inquirer/prompts";
|
|
1121
1121
|
var PROVIDER_GITIGNORE_FILES = {
|
|
1122
|
-
claude: ["CLAUDE.md", ".claude/"],
|
|
1123
|
-
"claude-code": ["CLAUDE.md", ".claude/"],
|
|
1122
|
+
"claude-code": ["CLAUDE.md", ".claude/", ".mcp.json"],
|
|
1124
1123
|
cursor: [".cursor/"],
|
|
1125
1124
|
codex: ["AGENTS.md", ".codex/"],
|
|
1126
1125
|
opencode: [".opencode/"]
|
|
@@ -1614,7 +1613,7 @@ import { debug } from "@omnidev-ai/core";
|
|
|
1614
1613
|
var require2 = createRequire2(import.meta.url);
|
|
1615
1614
|
function readCliVersion() {
|
|
1616
1615
|
try {
|
|
1617
|
-
const pkg = require2("
|
|
1616
|
+
const pkg = require2("../package.json");
|
|
1618
1617
|
if (typeof pkg?.version === "string") {
|
|
1619
1618
|
return pkg.version;
|
|
1620
1619
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@omnidev-ai/cli",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@inquirer/prompts": "^8.1.0",
|
|
31
|
-
"@omnidev-ai/core": "0.11.
|
|
31
|
+
"@omnidev-ai/core": "0.11.1",
|
|
32
32
|
"@stricli/core": "^1.2.5"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|