@seyuna/cli 1.0.0-canary.25 → 1.0.0-canary.26

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/esm/deno.d.ts CHANGED
@@ -1,7 +1,10 @@
1
1
  declare namespace _default {
2
2
  let name: string;
3
3
  let version: string;
4
- let exports: string;
4
+ let exports: {
5
+ ".": string;
6
+ "./types": string;
7
+ };
5
8
  namespace publish {
6
9
  let include: string[];
7
10
  }
package/esm/deno.js CHANGED
@@ -1,7 +1,10 @@
1
1
  export default {
2
2
  "name": "@seyuna/cli",
3
- "version": "1.0.0-canary.25",
4
- "exports": "./src/main.ts",
3
+ "version": "1.0.0-canary.26",
4
+ "exports": {
5
+ ".": "./src/main.ts",
6
+ "./types": "./src/types.ts"
7
+ },
5
8
  "publish": {
6
9
  "include": [
7
10
  "src/**/*.ts",
@@ -0,0 +1,12 @@
1
+ /**
2
+ * Seyuna CLI - Type Definitions
3
+ *
4
+ * This module re-exports the key types from the Seyuna CLI for use in
5
+ * external packages like @seyuna/postcss.
6
+ *
7
+ * @module
8
+ */
9
+ import "../_dnt.polyfills.js";
10
+ export type { Config } from "./config/types.js";
11
+ export type { Color, Mode, Palette, Theme, UI } from "./ui/types.js";
12
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/src/types.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAGH,OAAO,sBAAsB,CAAC;AAE9B,YAAY,EAAE,MAAM,EAAE,MAAM,mBAAmB,CAAC;AAGhD,YAAY,EAAE,KAAK,EAAE,IAAI,EAAE,OAAO,EAAE,KAAK,EAAE,EAAE,EAAE,MAAM,eAAe,CAAC"}
@@ -0,0 +1,10 @@
1
+ /**
2
+ * Seyuna CLI - Type Definitions
3
+ *
4
+ * This module re-exports the key types from the Seyuna CLI for use in
5
+ * external packages like @seyuna/postcss.
6
+ *
7
+ * @module
8
+ */
9
+ // Re-export Config types
10
+ import "../_dnt.polyfills.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seyuna/cli",
3
- "version": "1.0.0-canary.25",
3
+ "version": "1.0.0-canary.26",
4
4
  "description": "Seyuna CLI",
5
5
  "repository": {
6
6
  "type": "git",
@@ -14,6 +14,9 @@
14
14
  "exports": {
15
15
  ".": {
16
16
  "import": "./esm/src/main.js"
17
+ },
18
+ "./types": {
19
+ "import": "./esm/src/types.js"
17
20
  }
18
21
  },
19
22
  "scripts": {},