jixo 1.1.14 → 1.1.16
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/bundle/index.js +9 -0
- package/package.json +5 -5
- package/bundle/index.cjs +0 -37
package/bundle/index.js
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jixo",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.16",
|
|
4
4
|
"description": "The AI-Driven Development Foundation for Automated Software Engineering",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": "./bundle/index.js",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
},
|
|
21
21
|
"license": "MIT",
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@jixo/cli": "^0.23.
|
|
23
|
+
"@jixo/cli": "^0.23.7"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@gaubee/node": "^0.4.0",
|
|
@@ -44,10 +44,10 @@
|
|
|
44
44
|
"tsx": "^4.20.3",
|
|
45
45
|
"typescript": "^5.8.3",
|
|
46
46
|
"vitest": "^3.2.4",
|
|
47
|
-
"@jixo/
|
|
48
|
-
"@jixo/mcp-fs": "^1.6.0",
|
|
47
|
+
"@jixo/mcp-pnpm": "^1.4.0",
|
|
49
48
|
"@jixo/mcp-git": "^1.4.2",
|
|
50
|
-
"@jixo/mcp-
|
|
49
|
+
"@jixo/mcp-fs": "^1.6.0",
|
|
50
|
+
"@jixo/dev": "^1.14.4"
|
|
51
51
|
},
|
|
52
52
|
"scripts": {
|
|
53
53
|
"ci": "echo \"NO CI\"",
|
package/bundle/index.cjs
DELETED
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
//#region rolldown:runtime
|
|
3
|
-
var __create = Object.create;
|
|
4
|
-
var __defProp = Object.defineProperty;
|
|
5
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
6
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
7
|
-
var __getProtoOf = Object.getPrototypeOf;
|
|
8
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
9
|
-
var __copyProps = (to, from, except, desc) => {
|
|
10
|
-
if (from && typeof from === "object" || typeof from === "function") for (var keys = __getOwnPropNames(from), i = 0, n = keys.length, key; i < n; i++) {
|
|
11
|
-
key = keys[i];
|
|
12
|
-
if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
|
|
13
|
-
get: ((k) => from[k]).bind(null, key),
|
|
14
|
-
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
15
|
-
});
|
|
16
|
-
}
|
|
17
|
-
return to;
|
|
18
|
-
};
|
|
19
|
-
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
|
|
20
|
-
value: mod,
|
|
21
|
-
enumerable: true
|
|
22
|
-
}) : target, mod));
|
|
23
|
-
|
|
24
|
-
//#endregion
|
|
25
|
-
const __jixo_cli = __toESM(require("@jixo/cli"));
|
|
26
|
-
|
|
27
|
-
//#region index.ts
|
|
28
|
-
(0, __jixo_cli.tryRunCli)(import.meta);
|
|
29
|
-
|
|
30
|
-
//#endregion
|
|
31
|
-
|
|
32
|
-
Object.keys(__jixo_cli).forEach(function (k) {
|
|
33
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
34
|
-
enumerable: true,
|
|
35
|
-
get: function () { return __jixo_cli[k]; }
|
|
36
|
-
});
|
|
37
|
-
});
|