@ui8kit/uxdx 0.1.2 → 0.1.3
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 +6 -6
- package/dist/uxdx.mjs +2 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -15,17 +15,17 @@ bunx @ui8kit/uxdx -p
|
|
|
15
15
|
bunx @ui8kit/uxdx -s --level light
|
|
16
16
|
```
|
|
17
17
|
|
|
18
|
-
Same via npm:
|
|
18
|
+
Same via npm (`@ui8kit/uxdx@0.1.3` or later; `0.1.2` shims do not run Node):
|
|
19
19
|
|
|
20
20
|
```bash
|
|
21
|
-
npx @ui8kit/uxdx --help
|
|
22
|
-
npx @ui8kit/uxdx -p
|
|
23
|
-
npx @ui8kit/uxdx -s --level light
|
|
21
|
+
npx @ui8kit/uxdx@latest --help
|
|
22
|
+
npx @ui8kit/uxdx@latest -- -p
|
|
23
|
+
npx @ui8kit/uxdx@latest -- -s --level light
|
|
24
24
|
```
|
|
25
25
|
|
|
26
26
|
`npx` may print `DEP0040` / `punycode`. That comes from npm’s Node, not this
|
|
27
|
-
CLI.
|
|
28
|
-
`uxdx: sdlc
|
|
27
|
+
CLI. `--` keeps flags for `uxdx` (`npx` also has `-p`). Success still requires
|
|
28
|
+
`uxdx: project init` or `uxdx: sdlc …` after the warning.
|
|
29
29
|
|
|
30
30
|
After a local or global install the binary is unscoped:
|
|
31
31
|
|
package/dist/uxdx.mjs
CHANGED