oh-my-opencode-cohub 1.9.3 → 1.10.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/cli/index.js +3 -1
- package/package.json +4 -1
package/dist/cli/index.js
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
+
// package.json
|
|
3
|
+
var version = "1.10.1";
|
|
2
4
|
|
|
3
5
|
// src/cli/config-io.ts
|
|
4
6
|
import * as fs from "node:fs";
|
|
@@ -656,7 +658,7 @@ async function main() {
|
|
|
656
658
|
const args = process.argv.slice(2);
|
|
657
659
|
const command = args[0];
|
|
658
660
|
if (command === "install") {
|
|
659
|
-
console.log(`\uD83D\uDE80
|
|
661
|
+
console.log(`\uD83D\uDE80 oh-my-opencode-cohub v${version} 安装中...
|
|
660
662
|
`);
|
|
661
663
|
const r1 = addPluginToOpenCodeConfig();
|
|
662
664
|
console.log(r1.message);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oh-my-opencode-cohub",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.10.1",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/Mr-cjf/oh-my-opencode-cohub.git"
|
|
@@ -52,6 +52,9 @@
|
|
|
52
52
|
"@types/node": "^26.1.1",
|
|
53
53
|
"typescript": "^5.4.0"
|
|
54
54
|
},
|
|
55
|
+
"overrides": {
|
|
56
|
+
"@babel/core": "7.29.6"
|
|
57
|
+
},
|
|
55
58
|
"opencode": {
|
|
56
59
|
"plugin": true
|
|
57
60
|
}
|