wp-typia 0.16.14 → 0.17.0
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 +2 -2
- package/dist-bunli/.bunli/commands.gen.js +553 -271
- package/dist-bunli/.bunli/commands.gen.js.map +24 -20
- package/dist-bunli/{chunk-nmj243dx.js → chunk-1tddsdm7.js} +7 -5
- package/dist-bunli/chunk-1tddsdm7.js.map +10 -0
- package/dist-bunli/{chunk-qcjj2zqb.js → chunk-91jbnjnj.js} +19 -2
- package/dist-bunli/{chunk-qcjj2zqb.js.map → chunk-91jbnjnj.js.map} +4 -4
- package/dist-bunli/{chunk-kea2qcrw.js → chunk-gnmssg42.js} +1 -1
- package/dist-bunli/chunk-jn4gd4zr.js +117 -0
- package/dist-bunli/chunk-jn4gd4zr.js.map +10 -0
- package/dist-bunli/{chunk-3smrp421.js → chunk-m58h1nfr.js} +2 -2
- package/dist-bunli/{chunk-9czekkce.js → chunk-nsp30swa.js} +1 -1
- package/dist-bunli/{chunk-ktyee9zx.js → chunk-p4rzap95.js} +596 -418
- package/dist-bunli/{chunk-ktyee9zx.js.map → chunk-p4rzap95.js.map} +17 -13
- package/dist-bunli/{chunk-3qpwa1ph.js → chunk-t6jqe0e9.js} +4 -4
- package/dist-bunli/{chunk-gye66gne.js → chunk-t8507ce9.js} +1 -1
- package/dist-bunli/{chunk-2ecxfs2m.js → chunk-w0r7wa4s.js} +1 -1
- package/dist-bunli/cli.js +17 -10
- package/dist-bunli/cli.js.map +6 -6
- package/dist-bunli/node-cli.js +7 -6
- package/dist-bunli/node-cli.js.map +6 -6
- package/package.json +2 -2
- package/dist-bunli/chunk-nmj243dx.js.map +0 -10
- package/dist-bunli/chunk-s5y2xb3g.js +0 -60
- package/dist-bunli/chunk-s5y2xb3g.js.map +0 -10
- /package/dist-bunli/{chunk-kea2qcrw.js.map → chunk-gnmssg42.js.map} +0 -0
- /package/dist-bunli/{chunk-3smrp421.js.map → chunk-m58h1nfr.js.map} +0 -0
- /package/dist-bunli/{chunk-9czekkce.js.map → chunk-nsp30swa.js.map} +0 -0
- /package/dist-bunli/{chunk-3qpwa1ph.js.map → chunk-t6jqe0e9.js.map} +0 -0
- /package/dist-bunli/{chunk-gye66gne.js.map → chunk-t8507ce9.js.map} +0 -0
- /package/dist-bunli/{chunk-2ecxfs2m.js.map → chunk-w0r7wa4s.js.map} +0 -0
package/README.md
CHANGED
|
@@ -5,6 +5,7 @@ Canonical CLI package for `wp-typia`.
|
|
|
5
5
|
Use this package for new installs:
|
|
6
6
|
|
|
7
7
|
- `npx wp-typia create my-block`
|
|
8
|
+
- `npx wp-typia create my-books --template query-loop --query-post-type book`
|
|
8
9
|
- `bunx wp-typia create my-block`
|
|
9
10
|
- `npx wp-typia create my-plugin --template @wp-typia/create-workspace-template`
|
|
10
11
|
- `wp-typia add block counter-card --template basic`
|
|
@@ -18,9 +19,8 @@ argument.
|
|
|
18
19
|
Compatibility notes:
|
|
19
20
|
|
|
20
21
|
- `@wp-typia/project-tools` is the canonical programmatic project orchestration package
|
|
21
|
-
- `@wp-typia/create` is the deprecated legacy package shell
|
|
22
|
-
- `create-wp-typia` is archived and should not be used for new installs
|
|
23
22
|
- the published CLI now ships built `dist-bunli` runtimes, and the canonical Node bin uses a Node-safe fallback runtime for non-TUI `create`/`add`/`migrate`, `doctor`, `sync`, `--version`, `--help`, and template inspection without requiring a locally installed Bun binary
|
|
23
|
+
- when that Node fallback prompts interactively, it intentionally stays lighter than the Bun/OpenTUI flow: numbered lists, option label/value matching, inline validation retries, and redraw commands for the current choices: `?` for the short reprint shortcut, `help` for the explicit redraw command, and `list` for users who expect option listing semantics
|
|
24
24
|
- Bunli-specific command surfaces such as `skills`, `completions`, and `mcp` still run through the built `dist-bunli/cli.js` artifact and require Bun; if you need the full Bunli/OpenTUI runtime story, prefer `bunx wp-typia` or install Bun locally
|
|
25
25
|
- any future `curl`-style installer should reuse the same published `dist-bunli` runtime instead of reintroducing a Bun bootstrap path
|
|
26
26
|
- internal runtime-bridge helper modules are implementation details; integrations
|