@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 CHANGED
@@ -1,14 +1,12 @@
1
- # Forge v0.10.89
1
+ # Forge v0.10.90
2
2
 
3
3
  Released: 2026-06-17
4
4
 
5
- ## Changes since v0.10.88
5
+ ## Changes since v0.10.89
6
6
 
7
7
  ### Other
8
- - fix(build): clean install on fresh machines webpack build + valid route exports
9
- - fix(projects): strict resolve requires git-backed match + fresh-clone visibility
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 Turbopackpin 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.88...v0.10.89
12
+ **Full Changelog**: https://github.com/aiwatching/forge/compare/v0.10.89...v0.10.90
@@ -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
- // Build with webpack, not Turbopack (Next 16's default). Turbopack chokes on
70
- // the Proxy/middleware bundle proxy.ts pulls auth + a route module that
71
- // transitively imports Node-native deps (better-sqlite3 ) and dies with
72
- // "TurbopackInternalError: Expected process result to be a module". Webpack
73
- // (the pre-16 path) handles the Node-runtime middleware fine.
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.89",
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.1",
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 --webpack
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"