@beechcms/cms 0.4.0-preview.8 → 0.4.0-preview.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.
Files changed (2) hide show
  1. package/bin/cli.mjs +1 -1
  2. package/package.json +2 -2
package/bin/cli.mjs CHANGED
@@ -74,7 +74,7 @@ else if (Array.isArray(mod.seeds)) out = Object.fromEntries(mod.seeds.map(s => [
74
74
  else if (Array.isArray(mod.default)) out = Object.fromEntries(mod.default.map(s => [s.slug, s]));
75
75
  if (out) process.stdout.write(JSON.stringify(out));
76
76
  `.trim(),
77
- ], { encoding: 'utf-8', shell: true })
77
+ ], { encoding: 'utf-8' })
78
78
 
79
79
  if (result.status === 0 && result.stdout) {
80
80
  try { return JSON.parse(result.stdout) } catch (err) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@beechcms/cms",
3
- "version": "0.4.0-preview.8",
3
+ "version": "0.4.0-preview.9",
4
4
  "packageManager": "npm@11.9.0",
5
5
  "description": "Edge-Native, Schema-Driven Headless CMS built on Cloudflare Workers, D1, and R2. Features the Botanical Engine for alias-stable field management, a modular widget layer, and a React + Vite admin dashboard.",
6
6
  "keywords": [
@@ -56,7 +56,7 @@
56
56
  "typescript": "^5.9.3"
57
57
  },
58
58
  "dependencies": {
59
- "@beechcms/cli": "^0.4.0-preview.8",
59
+ "@beechcms/cli": "^0.4.0-preview.9",
60
60
  "@clack/prompts": "^0.9.1",
61
61
  "picocolors": "^1.1.1"
62
62
  }