@treeseed/core 0.8.4 → 0.8.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@treeseed/core",
3
- "version": "0.8.4",
3
+ "version": "0.8.5",
4
4
  "description": "Treeseed web framework package for Astro/Starlight site runtimes.",
5
5
  "license": "AGPL-3.0-only",
6
6
  "repository": {
@@ -70,7 +70,7 @@
70
70
  "@astrojs/sitemap": "3.7.0",
71
71
  "@astrojs/starlight": "0.37.6",
72
72
  "@tailwindcss/vite": "^4.1.4",
73
- "@treeseed/sdk": "0.8.4",
73
+ "@treeseed/sdk": "0.8.5",
74
74
  "astro": "^5.6.1",
75
75
  "esbuild": "^0.28.0",
76
76
  "katex": "^0.16.22",
@@ -86,7 +86,12 @@ __WORKING_DIRECTORY_BLOCK__ web:
86
86
  cache: npm
87
87
  cache-dependency-path: __CACHE_DEPENDENCY_PATH__
88
88
 
89
- - run: npm ci --ignore-scripts
89
+ - name: Install dependencies
90
+ shell: bash
91
+ run: |
92
+ set -euo pipefail
93
+ node -e "const fs = require('fs'); for (const file of ['packages/sdk/package.json', 'packages/agent/package.json', 'packages/core/package.json', 'packages/cli/package.json']) { if (!fs.existsSync(file)) continue; const p = JSON.parse(fs.readFileSync(file, 'utf8')); if (p.scripts) delete p.scripts.prepare; fs.writeFileSync(file, JSON.stringify(p, null, '\t') + '\n'); }"
94
+ npm ci --ignore-scripts
90
95
 
91
96
  - name: Build package artifacts
92
97
  shell: bash