kigumi 0.8.0 → 0.8.2

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/dist/index.js CHANGED
@@ -53,7 +53,7 @@ var ClackSpinner = class {
53
53
  this.spinner.stop(message || "Done");
54
54
  }
55
55
  error(message) {
56
- this.spinner.stop(message || "Failed", 1);
56
+ this.spinner.stop(message || "Failed");
57
57
  }
58
58
  };
59
59
  var ConsoleOutput = class {
@@ -16,7 +16,7 @@ React wrapper component for the Web Awesome `wa-tooltip` element.
16
16
 
17
17
  ```tsx
18
18
  // Kigumi React
19
- import { Tooltip } from "@/components/ui";
19
+ import { Tooltip } from '@/components/ui';
20
20
 
21
21
  <Tooltip for="''" content="''">
22
22
  Click me
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kigumi",
3
- "version": "0.8.0",
3
+ "version": "0.8.2",
4
4
  "description": "CLI tool to add Web Awesome components to your project",
5
5
  "type": "module",
6
6
  "bin": {
@@ -35,11 +35,11 @@
35
35
  "author": "Michael Suzuki <hi@mischa.dev>",
36
36
  "license": "MIT",
37
37
  "dependencies": {
38
- "@clack/prompts": "^0.11.0",
38
+ "@clack/prompts": "^1.0.0",
39
39
  "cheerio": "^1.2.0",
40
- "commander": "^11.1.0",
40
+ "commander": "^14.0.3",
41
41
  "cosmiconfig": "^9.0.0",
42
- "execa": "^8.0.1",
42
+ "execa": "^9.6.1",
43
43
  "fs-extra": "^11.2.0",
44
44
  "handlebars": "^4.7.8",
45
45
  "picocolors": "^1.0.0",
@@ -66,9 +66,9 @@
66
66
  "scripts": {
67
67
  "dev": "tsx watch src/index.ts",
68
68
  "generate:metadata": "tsx scripts/parse-custom-elements.ts",
69
- "prebuild": "pnpm generate:metadata",
69
+ "prebuild": "test -f src/utils/component-metadata.ts || pnpm generate:metadata",
70
70
  "build:skills": "tsx scripts/generate-skill-references.ts && cp -r skills dist/",
71
- "build": "tsup src/index.ts --format esm --dts && cp -r templates dist/ && pnpm build:skills && cp llms.txt dist/",
71
+ "build": "tsup src/index.ts --format esm --dts && cp -r templates dist/ && cp -r skills dist/ && cp llms.txt dist/",
72
72
  "start": "node dist/index.js",
73
73
  "type-check": "tsc --noEmit",
74
74
  "test": "vitest run tests/unit",
@@ -16,7 +16,7 @@ React wrapper component for the Web Awesome `wa-tooltip` element.
16
16
 
17
17
  ```tsx
18
18
  // Kigumi React
19
- import { Tooltip } from "@/components/ui";
19
+ import { Tooltip } from '@/components/ui';
20
20
 
21
21
  <Tooltip for="''" content="''">
22
22
  Click me