@aion0/forge 0.10.89 → 0.10.90
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/RELEASE_NOTES.md +5 -7
- package/bin/forge-server.mjs +5 -6
- package/package.json +2 -2
- package/publish.sh +1 -1
package/RELEASE_NOTES.md
CHANGED
|
@@ -1,14 +1,12 @@
|
|
|
1
|
-
# Forge v0.10.
|
|
1
|
+
# Forge v0.10.90
|
|
2
2
|
|
|
3
3
|
Released: 2026-06-17
|
|
4
4
|
|
|
5
|
-
## Changes since v0.10.
|
|
5
|
+
## Changes since v0.10.89
|
|
6
6
|
|
|
7
7
|
### Other
|
|
8
|
-
- fix(build):
|
|
9
|
-
- fix(
|
|
10
|
-
- refactor(projects): auto-clone lands in project root, retire cloned-projects
|
|
11
|
-
- feat(projects): auto-clone lands in a real project root, not the cache
|
|
8
|
+
- fix(build): revert to default Turbopack — pin is the real fix, not webpack
|
|
9
|
+
- fix(build): pin next to exact 16.2.1 — 16.2.9 breaks webpack middleware
|
|
12
10
|
|
|
13
11
|
|
|
14
|
-
**Full Changelog**: https://github.com/aiwatching/forge/compare/v0.10.
|
|
12
|
+
**Full Changelog**: https://github.com/aiwatching/forge/compare/v0.10.89...v0.10.90
|
package/bin/forge-server.mjs
CHANGED
|
@@ -66,12 +66,11 @@ function buildNext() {
|
|
|
66
66
|
// installed npm-package copy (.npmrc isn't published).
|
|
67
67
|
execSync('npm install --include=dev --legacy-peer-deps', { cwd: ROOT, stdio: 'inherit' });
|
|
68
68
|
}
|
|
69
|
-
//
|
|
70
|
-
//
|
|
71
|
-
//
|
|
72
|
-
//
|
|
73
|
-
|
|
74
|
-
execSync('npx next build --webpack', { cwd: ROOT, stdio: 'inherit', env: { ...process.env } });
|
|
69
|
+
// Default bundler (Turbopack). Builds clean on the pinned next@16.2.1 — the
|
|
70
|
+
// "Expected process result to be a module" / "Module parse failed" failures
|
|
71
|
+
// were a next version drifting past 16.2.1 (see package.json pin), not a
|
|
72
|
+
// Turbopack-vs-webpack issue.
|
|
73
|
+
execSync('npx next build', { cwd: ROOT, stdio: 'inherit', env: { ...process.env } });
|
|
75
74
|
}
|
|
76
75
|
|
|
77
76
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aion0/forge",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.90",
|
|
4
4
|
"description": "Unified AI workflow platform — multi-model task orchestration, persistent sessions, web terminal, remote access",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"better-sqlite3": "^12.6.2",
|
|
51
51
|
"cron-parser": "^5.5.0",
|
|
52
52
|
"esbuild": "^0.27.3",
|
|
53
|
-
"next": "^16.2.
|
|
53
|
+
"next": "^16.2.9",
|
|
54
54
|
"next-auth": "5.0.0-beta.30",
|
|
55
55
|
"node-pty": "1.0.0",
|
|
56
56
|
"nodemailer": "^6.10.1",
|
package/publish.sh
CHANGED
|
@@ -55,7 +55,7 @@ echo ""
|
|
|
55
55
|
# checked separately, so they're excluded.
|
|
56
56
|
echo "Verifying clean build before publish ..."
|
|
57
57
|
rm -rf .next
|
|
58
|
-
npx next build
|
|
58
|
+
npx next build
|
|
59
59
|
TSC_ERRORS=$(npx tsc --noEmit 2>&1 | grep "error TS" | grep -v "__tests__" || true)
|
|
60
60
|
if [ -n "$TSC_ERRORS" ]; then
|
|
61
61
|
echo "$TSC_ERRORS"
|