kylon-cli 0.1.0-next.13 → 0.1.0-next.130
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 -10
- package/dist/kylon-bundle.mjs +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -334,7 +334,7 @@ The release artifact is a single-file ESM bundle produced by
|
|
|
334
334
|
|---|---|---|---|
|
|
335
335
|
| `pnpm --filter kylon-cli bundle` | `dist/kylon-bundle.mjs` | _(none)_ | debugging the bundled shape while keeping readable names — not shipped |
|
|
336
336
|
| `pnpm --filter kylon-cli bundle:minify` | `dist/kylon-bundle.mjs` | `--minify` | reproducing the pre-obfuscation size and behavior for a bisect |
|
|
337
|
-
| `pnpm --filter kylon-cli bundle:release` | `dist/kylon-bundle.mjs` | `--minify --obfuscate` | what ships on npm
|
|
337
|
+
| `pnpm --filter kylon-cli bundle:release` | `dist/kylon-bundle.mjs` | `--minify --obfuscate` | what ships on npm |
|
|
338
338
|
|
|
339
339
|
The `bundle:release` path runs esbuild with `--minify`, then passes the
|
|
340
340
|
output through `javascript-obfuscator`. It's also what the `prepack` hook
|
|
@@ -470,12 +470,3 @@ npm deprecate kylon-cli@<bad> "Broken release — use <last-good>."
|
|
|
470
470
|
Operators on `@latest` pick up the re-pointed version the next time they
|
|
471
471
|
`npm install -g kylon-cli@latest`; in-flight daemons keep their current CLI
|
|
472
472
|
until they restart. Do not `npm unpublish`.
|
|
473
|
-
|
|
474
|
-
### Fallback bundle (deprecated)
|
|
475
|
-
|
|
476
|
-
A single-file bundle is still served at `/docs/cli/kylon.mjs` (redirecting to
|
|
477
|
-
the public CDN) as a grace-period fallback for pre-npm install commands. It is
|
|
478
|
-
**frozen**: `release-cli.yml` — which built and uploaded it on every CLI push —
|
|
479
|
-
has been removed, so no new bundles are produced. The endpoint will be retired
|
|
480
|
-
once `docs.kylon.io` and any in-the-wild `curl` install commands have moved to
|
|
481
|
-
npm.
|