@treeseed/core 0.6.32 → 0.6.33

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.6.32",
3
+ "version": "0.6.33",
4
4
  "description": "Treeseed integrated platform starter for Astro/Starlight web runtimes and Hono API runtimes.",
5
5
  "license": "AGPL-3.0-only",
6
6
  "repository": {
@@ -76,7 +76,7 @@
76
76
  "@astrojs/sitemap": "3.7.0",
77
77
  "@astrojs/starlight": "0.37.6",
78
78
  "@tailwindcss/vite": "^4.1.4",
79
- "@treeseed/sdk": "0.6.31",
79
+ "@treeseed/sdk": "0.6.32",
80
80
  "astro": "^5.6.1",
81
81
  "esbuild": "^0.28.0",
82
82
  "hono": "^4.8.2",
@@ -176,9 +176,11 @@ jobs:
176
176
  set -euo pipefail
177
177
  npm run verify:local 2>&1 | tee verify.log
178
178
  if test -f ./packages/sdk/scripts/check-build-warnings.mjs; then
179
- node ./packages/sdk/scripts/check-build-warnings.mjs verify.log
179
+ node ./packages/sdk/scripts/check-build-warnings.mjs verify.log \
180
+ --allow 'Module "url" has been externalized for browser compatibility, imported by ".*libsodium-sumo.*"'
180
181
  elif test -f ./node_modules/@treeseed/sdk/dist/scripts/check-build-warnings.js; then
181
- node ./node_modules/@treeseed/sdk/dist/scripts/check-build-warnings.js verify.log
182
+ node ./node_modules/@treeseed/sdk/dist/scripts/check-build-warnings.js verify.log \
183
+ --allow 'Module "url" has been externalized for browser compatibility, imported by ".*libsodium-sumo.*"'
182
184
  else
183
185
  echo "Unable to resolve @treeseed/sdk warning scanner entrypoint."
184
186
  exit 1