@cristiancorreau/forge 2.9.10 → 2.9.11
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 +9 -0
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,15 @@ Versioning: [Semantic Versioning](https://semver.org/lang/es/)
|
|
|
7
7
|
|
|
8
8
|
---
|
|
9
9
|
|
|
10
|
+
## [2.9.11] — 2026-06-04
|
|
11
|
+
|
|
12
|
+
### Cambiado (infraestructura)
|
|
13
|
+
- **CI migrado a Bun.** El `package-lock.json` de `packages/cli` estaba corrupto (la raíz declaraba 8 dependencias pero el árbol solo resolvía `@clack/*`), por lo que `npm ci` nunca instalaba `@opentui/core`. Se elimina ese lockfile y `bun.lock` pasa a ser el único lockfile. El workflow `release` ahora usa `oven-sh/setup-bun` + `bun install --frozen-lockfile`; Node sigue corriendo la suite de tests (matriz 20/22) y `npm publish --provenance` (Bun no soporta provenance).
|
|
14
|
+
- `package-lock.json` de `packages/cli` añadido a `.gitignore` para que npm no lo regenere.
|
|
15
|
+
- `build:all` invoca las herramientas directamente (`node scripts/build-assets.mjs && tsc`) en vez de `npm run`, para no depender del runner (Bun reescribe `npm run` a `bun run`).
|
|
16
|
+
|
|
17
|
+
---
|
|
18
|
+
|
|
10
19
|
## [2.9.10] — 2026-06-04
|
|
11
20
|
|
|
12
21
|
### Corregido
|
package/dist/version.d.ts
CHANGED
package/dist/version.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cristiancorreau/forge",
|
|
3
|
-
"version": "2.9.
|
|
3
|
+
"version": "2.9.11",
|
|
4
4
|
"description": "Agentic development framework — multi-runtime support for Claude Code, OpenCode, Codex and Kiro",
|
|
5
5
|
"author": "Cristian Correa <cristian@socialweb.cl>",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"scripts": {
|
|
26
26
|
"build": "tsc",
|
|
27
27
|
"build:assets": "node scripts/build-assets.mjs",
|
|
28
|
-
"build:all": "
|
|
28
|
+
"build:all": "node scripts/build-assets.mjs && tsc",
|
|
29
29
|
"dev": "tsc --watch",
|
|
30
30
|
"prepublishOnly": "npm run build:all",
|
|
31
31
|
"test": "node --test test/commands.test.mjs test/assets.test.mjs"
|