code-foundry 0.27.8 → 0.27.9

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.9](https://github.com/0xPlayerOne/code-foundry/compare/v0.27.8...v0.27.9) (2026-07-28)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **ci:** hoist Bun workspace dependencies ([f480ad6](https://github.com/0xPlayerOne/code-foundry/commit/f480ad671cf12435f632d9397dbc8f72d7a2e8fe))
9
+
3
10
  ## [0.27.8](https://github.com/0xPlayerOne/code-foundry/compare/v0.27.7...v0.27.8) (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.8",
3
+ "version": "0.27.9",
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
@@ -100,7 +100,7 @@ function install() {
100
100
  if (lock) {
101
101
  /** @type {Record<string, [string, string[]]>} */
102
102
  const commands = {
103
- bun: ['bun', ['install', '--frozen-lockfile', '--ignore-scripts', ...(readPackage()?.workspaces ? ['--force'] : [])]],
103
+ bun: ['bun', ['install', '--frozen-lockfile', '--ignore-scripts', ...(readPackage()?.workspaces ? ['--force', '--linker=hoisted'] : [])]],
104
104
  pnpm: ['pnpm', ['install', '--frozen-lockfile', '--prefer-offline']],
105
105
  yarn: ['yarn', ['install', '--immutable']],
106
106
  npm: ['npm', ['ci', '--prefer-offline', '--no-audit', '--fund=false']],