@palettelab/cli 0.3.38 → 0.3.39

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/README.md CHANGED
@@ -660,7 +660,7 @@ pltt test
660
660
  pltt test --json
661
661
  ```
662
662
 
663
- Checks include manifest validity, SDK/platform compatibility, semver bump detection, forbidden platform imports, frontend bundling and size limits, sandbox bridge smoke, backend dependency installation/import, route permission gates, route permission declarations, migration linting, frontend sandbox policy, and dependency policy for `package.json` / `pyproject.toml`.
663
+ Checks include manifest validity, SDK/platform compatibility, semver bump detection, forbidden platform imports, frontend bundling and size limits, sandbox bridge smoke, backend dependency installation/import, route permission gates, route permission declarations, migration linting, frontend sandbox policy, and dependency policy for `package.json` / `pyproject.toml`. The default frontend bundle limit is 2 MiB; set `PALETTE_MAX_FRONTEND_BUNDLE_BYTES` for reviewed exceptions.
664
664
 
665
665
  ### `pltt package`
666
666
 
@@ -8,7 +8,7 @@ const { bundleFrontend, bundleBackend } = require("../bundler")
8
8
  const { declaredSecrets, loadLocalEnv } = require("../secrets")
9
9
  const buildCommand = require("./build")
10
10
 
11
- const DEFAULT_FRONTEND_BUNDLE_LIMIT = 512 * 1024
11
+ const DEFAULT_FRONTEND_BUNDLE_LIMIT = 2 * 1024 * 1024
12
12
  const DEFAULT_BACKEND_BUNDLE_LIMIT = 5 * 1024 * 1024
13
13
 
14
14
  function reporter(json, results) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@palettelab/cli",
3
- "version": "0.3.38",
3
+ "version": "0.3.39",
4
4
  "description": "Developer CLI for building Palette platform plugins — no platform source access required.",
5
5
  "bin": {
6
6
  "pltt": "bin/pltt.js"