code-foundry 0.27.7 → 0.27.8

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 CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.27.8](https://github.com/0xPlayerOne/code-foundry/compare/v0.27.7...v0.27.8) (2026-07-28)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **ci:** run required Bun postinstall setup safely ([0302604](https://github.com/0xPlayerOne/code-foundry/commit/0302604f877bedbef8d3ab06794ffd9599fb774c))
9
+
3
10
  ## [0.27.7](https://github.com/0xPlayerOne/code-foundry/compare/v0.27.6...v0.27.7) (2026-07-28)
4
11
 
5
12
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "code-foundry",
3
- "version": "0.27.7",
3
+ "version": "0.27.8",
4
4
  "description": "A fast, language-aware repository factory for agent-ready workflows, testing, security, and release automation.",
5
5
  "type": "module",
6
6
  "license": "AGPL-3.0-or-later",
package/src/runtime.mjs CHANGED
@@ -107,7 +107,7 @@ function install() {
107
107
  }
108
108
  const command = commands[packageManager]
109
109
  if (command) run(command[0], command[1])
110
- if (packageManager === 'bun') runScript(['prepare'])
110
+ if (packageManager === 'bun') runScript(['prepare', 'postinstall'])
111
111
  }
112
112
  }
113
113
  if (hasLanguage('python') && (existsSync(resolve(root, 'pyproject.toml')) || existsSync(resolve(root, 'requirements.txt')))) {