code-foundry 0.27.7 → 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,19 @@
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
+
10
+ ## [0.27.8](https://github.com/0xPlayerOne/code-foundry/compare/v0.27.7...v0.27.8) (2026-07-28)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * **ci:** run required Bun postinstall setup safely ([0302604](https://github.com/0xPlayerOne/code-foundry/commit/0302604f877bedbef8d3ab06794ffd9599fb774c))
16
+
3
17
  ## [0.27.7](https://github.com/0xPlayerOne/code-foundry/compare/v0.27.6...v0.27.7) (2026-07-28)
4
18
 
5
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "code-foundry",
3
- "version": "0.27.7",
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,14 +100,14 @@ 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']],
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')))) {