openfox 2.0.106 → 2.0.107
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/CHANGELOG.md +5 -0
- package/dist/CHANGELOG.md +5 -0
- package/dist/{chunk-QBKAW5H4.js → chunk-5LR4AMQH.js} +3 -3
- package/dist/{chunk-G2VLGZ3Y.js → chunk-SLFCV72V.js} +2 -2
- package/dist/chunk-T5OFUWKZ.js +7 -0
- package/dist/cli/dev.js +1 -1
- package/dist/cli/index.js +1 -1
- package/dist/package.json +2 -2
- package/dist/{serve-2O7G2WZF.js → serve-4F7O6FL3.js} +3 -3
- package/dist/server/index.js +2 -2
- package/dist/{update-QEZIUJHR.js → update-PG2YJEVU.js} +2 -2
- package/package.json +2 -2
- package/dist/chunk-C5YV3EA4.js +0 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 2.0.107 - 2026-08-02
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
- **npm install works again** — installing openfox no longer fails because the postinstall tried to build web deps inside the published package; that only happens in source checkouts now.
|
|
7
|
+
|
|
3
8
|
## 2.0.106 - 2026-08-02
|
|
4
9
|
|
|
5
10
|
### Features
|
package/dist/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 2.0.107 - 2026-08-02
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
- **npm install works again** — installing openfox no longer fails because the postinstall tried to build web deps inside the published package; that only happens in source checkouts now.
|
|
7
|
+
|
|
3
8
|
## 2.0.106 - 2026-08-02
|
|
4
9
|
|
|
5
10
|
### Features
|
|
@@ -200,7 +200,7 @@ async function runCli(options) {
|
|
|
200
200
|
break;
|
|
201
201
|
}
|
|
202
202
|
case "update": {
|
|
203
|
-
const { runUpdate } = await import("./update-
|
|
203
|
+
const { runUpdate } = await import("./update-PG2YJEVU.js");
|
|
204
204
|
const code = await runUpdate();
|
|
205
205
|
if (code !== 0) {
|
|
206
206
|
process.exit(code);
|
|
@@ -213,7 +213,7 @@ async function runCli(options) {
|
|
|
213
213
|
if (!configExists) {
|
|
214
214
|
await runNetworkSetup(mode);
|
|
215
215
|
}
|
|
216
|
-
const { runServe } = await import("./serve-
|
|
216
|
+
const { runServe } = await import("./serve-4F7O6FL3.js");
|
|
217
217
|
const serveOptions = { mode };
|
|
218
218
|
if (values.port) serveOptions.port = parseInt(values.port);
|
|
219
219
|
if (values["no-browser"] === true) serveOptions.openBrowser = false;
|
|
@@ -225,4 +225,4 @@ async function runCli(options) {
|
|
|
225
225
|
export {
|
|
226
226
|
runCli
|
|
227
227
|
};
|
|
228
|
-
//# sourceMappingURL=chunk-
|
|
228
|
+
//# sourceMappingURL=chunk-5LR4AMQH.js.map
|
|
@@ -121,7 +121,7 @@ import {
|
|
|
121
121
|
} from "./chunk-6FPGJR7O.js";
|
|
122
122
|
import {
|
|
123
123
|
VERSION
|
|
124
|
-
} from "./chunk-
|
|
124
|
+
} from "./chunk-T5OFUWKZ.js";
|
|
125
125
|
import {
|
|
126
126
|
clearWorkflowExecution,
|
|
127
127
|
createSession,
|
|
@@ -8178,4 +8178,4 @@ export {
|
|
|
8178
8178
|
createServerHandle,
|
|
8179
8179
|
createServer
|
|
8180
8180
|
};
|
|
8181
|
-
//# sourceMappingURL=chunk-
|
|
8181
|
+
//# sourceMappingURL=chunk-SLFCV72V.js.map
|
package/dist/cli/dev.js
CHANGED
package/dist/cli/index.js
CHANGED
package/dist/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openfox",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.107",
|
|
4
4
|
"description": "Local-LLM-first agentic coding assistant",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"clean": "rm -rf dist",
|
|
63
63
|
"prepublishOnly": "npm run build && npm run test:publish:e2e",
|
|
64
64
|
"prepare": "husky",
|
|
65
|
-
"postinstall": "if [ ! -d web/node_modules ]; then cd web && npm install --prefer-offline; fi",
|
|
65
|
+
"postinstall": "if [ -f web/package.json ] && [ ! -d web/node_modules ]; then cd web && npm install --prefer-offline; fi",
|
|
66
66
|
"test:publish:e2e": "tsx scripts/run-publish-e2e.ts"
|
|
67
67
|
},
|
|
68
68
|
"dependencies": {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
createServer
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-SLFCV72V.js";
|
|
4
4
|
import "./chunk-P4APMCTX.js";
|
|
5
5
|
import "./chunk-WLJJRX22.js";
|
|
6
6
|
import "./chunk-SUTJJWUK.js";
|
|
@@ -28,7 +28,7 @@ import "./chunk-V6Y6OLB4.js";
|
|
|
28
28
|
import "./chunk-6FPGJR7O.js";
|
|
29
29
|
import {
|
|
30
30
|
VERSION
|
|
31
|
-
} from "./chunk-
|
|
31
|
+
} from "./chunk-T5OFUWKZ.js";
|
|
32
32
|
import "./chunk-3C73IUUL.js";
|
|
33
33
|
import "./chunk-IA4Y3CKA.js";
|
|
34
34
|
import {
|
|
@@ -220,4 +220,4 @@ async function runServe(options) {
|
|
|
220
220
|
export {
|
|
221
221
|
runServe
|
|
222
222
|
};
|
|
223
|
-
//# sourceMappingURL=serve-
|
|
223
|
+
//# sourceMappingURL=serve-4F7O6FL3.js.map
|
package/dist/server/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
createServer,
|
|
3
3
|
createServerHandle
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-SLFCV72V.js";
|
|
5
5
|
import "../chunk-P4APMCTX.js";
|
|
6
6
|
import "../chunk-WLJJRX22.js";
|
|
7
7
|
import "../chunk-SUTJJWUK.js";
|
|
@@ -27,7 +27,7 @@ import "../chunk-JAX5OEMM.js";
|
|
|
27
27
|
import "../chunk-UXQN7FGB.js";
|
|
28
28
|
import "../chunk-V6Y6OLB4.js";
|
|
29
29
|
import "../chunk-6FPGJR7O.js";
|
|
30
|
-
import "../chunk-
|
|
30
|
+
import "../chunk-T5OFUWKZ.js";
|
|
31
31
|
import "../chunk-3C73IUUL.js";
|
|
32
32
|
import "../chunk-IA4Y3CKA.js";
|
|
33
33
|
import "../chunk-2GM6SUIQ.js";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
VERSION
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-T5OFUWKZ.js";
|
|
4
4
|
import "./chunk-5WRI5ZAA.js";
|
|
5
5
|
|
|
6
6
|
// src/cli/update.ts
|
|
@@ -46,4 +46,4 @@ async function runUpdate(options = {}) {
|
|
|
46
46
|
export {
|
|
47
47
|
runUpdate
|
|
48
48
|
};
|
|
49
|
-
//# sourceMappingURL=update-
|
|
49
|
+
//# sourceMappingURL=update-PG2YJEVU.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openfox",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.107",
|
|
4
4
|
"description": "Local-LLM-first agentic coding assistant",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"clean": "rm -rf dist",
|
|
63
63
|
"prepublishOnly": "npm run build && npm run test:publish:e2e",
|
|
64
64
|
"prepare": "husky",
|
|
65
|
-
"postinstall": "if [ ! -d web/node_modules ]; then cd web && npm install --prefer-offline; fi",
|
|
65
|
+
"postinstall": "if [ -f web/package.json ] && [ ! -d web/node_modules ]; then cd web && npm install --prefer-offline; fi",
|
|
66
66
|
"test:publish:e2e": "tsx scripts/run-publish-e2e.ts"
|
|
67
67
|
},
|
|
68
68
|
"dependencies": {
|