@pantoken/cli 0.1.26 → 0.1.28

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.
Files changed (2) hide show
  1. package/dist/index.d.mts +4 -5
  2. package/package.json +21 -21
package/dist/index.d.mts CHANGED
@@ -1,7 +1,7 @@
1
1
  import { Theme } from "@pantoken/model";
2
2
  //#region src/index.d.ts
3
3
  /** The parsed CLI invocation. */
4
- interface CliArgs {
4
+ export interface CliArgs {
5
5
  command: string;
6
6
  target: string;
7
7
  out: string;
@@ -39,7 +39,7 @@ interface CliArgs {
39
39
  * args.icons; // → ["arrow-left", "check-mark"]
40
40
  * ```
41
41
  */
42
- declare function parseArgs(argv: readonly string[]): CliArgs;
42
+ export declare function parseArgs(argv: readonly string[]): CliArgs;
43
43
  /**
44
44
  * Run the CLI.
45
45
  *
@@ -58,6 +58,5 @@ declare function parseArgs(argv: readonly string[]): CliArgs;
58
58
  * await run(["generate", "swatches", "--format", "gpl", "--theme", "canvas", "--out", "./out"]);
59
59
  * ```
60
60
  */
61
- declare function run(argv: readonly string[]): Promise<void>;
62
- //#endregion
63
- export { CliArgs, parseArgs, run };
61
+ export declare function run(argv: readonly string[]): Promise<void>;
62
+ //#endregion
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@pantoken/cli",
3
- "version": "0.1.26",
3
+ "version": "0.1.28",
4
4
  "description": "pantoken generate <target> — emit native design-token source (Swift now; Kotlin/Dart/Drupal to follow).",
5
- "homepage": "https://pantoken.iywahl.com",
5
+ "homepage": "https://pantoken.app",
6
6
  "bugs": "https://github.com/thedannywahl/pantoken/issues",
7
7
  "license": "MIT",
8
8
  "repository": {
@@ -28,28 +28,28 @@
28
28
  "provenance": true
29
29
  },
30
30
  "dependencies": {
31
- "@pantoken/android": "0.1.17",
32
- "@pantoken/compose": "0.1.17",
33
- "@pantoken/drupal": "0.1.23",
34
- "@pantoken/flutter": "0.1.17",
35
- "@pantoken/hugo": "0.1.23",
36
- "@pantoken/icon-font": "0.1.16",
37
- "@pantoken/jekyll": "0.1.23",
38
- "@pantoken/mintlify": "0.1.13",
39
- "@pantoken/model": "0.3.1",
40
- "@pantoken/pendo": "0.3.12",
41
- "@pantoken/rust": "0.1.15",
42
- "@pantoken/swatches": "0.1.13",
43
- "@pantoken/swift": "0.1.17",
44
- "@pantoken/tokens": "0.3.0",
45
- "@pantoken/vanilla": "0.1.12",
46
- "@pantoken/wordpress": "0.1.12"
31
+ "@pantoken/android": "0.1.18",
32
+ "@pantoken/compose": "0.1.18",
33
+ "@pantoken/drupal": "0.1.25",
34
+ "@pantoken/flutter": "0.1.18",
35
+ "@pantoken/hugo": "0.1.25",
36
+ "@pantoken/icon-font": "0.1.17",
37
+ "@pantoken/jekyll": "0.1.25",
38
+ "@pantoken/mintlify": "0.1.14",
39
+ "@pantoken/model": "0.3.2",
40
+ "@pantoken/pendo": "0.3.14",
41
+ "@pantoken/rust": "0.1.16",
42
+ "@pantoken/swatches": "0.1.14",
43
+ "@pantoken/swift": "0.1.18",
44
+ "@pantoken/tokens": "0.3.1",
45
+ "@pantoken/vanilla": "0.1.13",
46
+ "@pantoken/wordpress": "0.1.13"
47
47
  },
48
48
  "devDependencies": {
49
- "@types/node": "^26.3.0",
49
+ "@types/node": "^26.5.0",
50
50
  "typescript": "^7.0.2",
51
- "vite": "npm:@voidzero-dev/vite-plus-core@0.3.0",
52
- "vite-plus": "0.3.0"
51
+ "vite": "npm:@voidzero-dev/vite-plus-core@0.3.1",
52
+ "vite-plus": "0.3.1"
53
53
  },
54
54
  "engines": {
55
55
  "node": ">=22.18.0"