@aion0/forge 0.9.4 → 0.9.6
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 +3 -3
- package/bin/forge-server.mjs +6 -1
- package/package.json +3 -4
package/RELEASE_NOTES.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
# Forge v0.9.
|
|
1
|
+
# Forge v0.9.6
|
|
2
2
|
|
|
3
3
|
Released: 2026-05-26
|
|
4
4
|
|
|
5
|
-
## Changes since v0.9.
|
|
5
|
+
## Changes since v0.9.5
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
**Full Changelog**: https://github.com/aiwatching/forge/compare/v0.9.
|
|
8
|
+
**Full Changelog**: https://github.com/aiwatching/forge/compare/v0.9.5...v0.9.6
|
package/bin/forge-server.mjs
CHANGED
|
@@ -33,7 +33,12 @@ function buildNext() {
|
|
|
33
33
|
// Check if devDependencies are installed (e.g. @tailwindcss/postcss)
|
|
34
34
|
if (!existsSync(join(ROOT, 'node_modules', '@tailwindcss', 'postcss'))) {
|
|
35
35
|
console.log('[forge] Installing dependencies...');
|
|
36
|
-
|
|
36
|
+
// --legacy-peer-deps: next-auth@5-beta + its nested @auth/core declare
|
|
37
|
+
// contradictory peerOptional nodemailer requirements (v7 vs v6) — both
|
|
38
|
+
// optional, but npm 10+ treats this as a hard ERESOLVE error. Same
|
|
39
|
+
// policy as the repo's .npmrc, baked in here so it works even in the
|
|
40
|
+
// installed npm-package copy (.npmrc isn't published).
|
|
41
|
+
execSync('npm install --include=dev --legacy-peer-deps', { cwd: ROOT, stdio: 'inherit' });
|
|
37
42
|
}
|
|
38
43
|
execSync('npx next build', { cwd: ROOT, stdio: 'inherit', env: { ...process.env } });
|
|
39
44
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aion0/forge",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.6",
|
|
4
4
|
"description": "Unified AI workflow platform — multi-model task orchestration, persistent sessions, web terminal, remote access",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
@@ -34,7 +34,6 @@
|
|
|
34
34
|
"@ai-sdk/google": "^3.0.43",
|
|
35
35
|
"@ai-sdk/openai": "^3.0.41",
|
|
36
36
|
"@anthropic-ai/sdk": "^0.96.0",
|
|
37
|
-
"@auth/core": "^0.34.3",
|
|
38
37
|
"@modelcontextprotocol/sdk": "^1.28.0",
|
|
39
38
|
"@types/adm-zip": "^0.5.8",
|
|
40
39
|
"@xterm/addon-fit": "^0.11.0",
|
|
@@ -51,7 +50,7 @@
|
|
|
51
50
|
"next": "^16.2.1",
|
|
52
51
|
"next-auth": "5.0.0-beta.30",
|
|
53
52
|
"node-pty": "1.0.0",
|
|
54
|
-
"nodemailer": "^
|
|
53
|
+
"nodemailer": "^6.10.1",
|
|
55
54
|
"react": "^19.2.4",
|
|
56
55
|
"react-dom": "^19.2.4",
|
|
57
56
|
"react-markdown": "^10.1.0",
|
|
@@ -71,7 +70,7 @@
|
|
|
71
70
|
"@tailwindcss/postcss": "^4.2.1",
|
|
72
71
|
"@types/better-sqlite3": "^7.6.13",
|
|
73
72
|
"@types/node": "^25.4.0",
|
|
74
|
-
"@types/nodemailer": "^
|
|
73
|
+
"@types/nodemailer": "^6.4.0",
|
|
75
74
|
"@types/react": "^19.2.14",
|
|
76
75
|
"@types/react-dom": "^19.2.3",
|
|
77
76
|
"@types/ws": "^8.18.1",
|