@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 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. The command still runs if you then see `uxdx: project init` or
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
@@ -1,3 +1,5 @@
1
+ #!/usr/bin/env node
2
+
1
3
  // packages/cli/src/parse.ts
2
4
  var LEVELS = new Set(["light", "core", "full"]);
3
5
  function takeFlag(rest, name) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ui8kit/uxdx",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "CLI to accumulate operator and developer experience packs",
5
5
  "type": "module",
6
6
  "bin": {