@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 +1 -1
- package/lib/commands/test.js +1 -1
- package/package.json +1 -1
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
|
|
package/lib/commands/test.js
CHANGED
|
@@ -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 =
|
|
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) {
|