@seyuna/cli 1.0.0-canary.25 → 1.0.0-canary.27
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 +4 -1
- package/esm/deno.js +5 -2
- package/esm/src/types.d.ts +12 -0
- package/esm/src/types.d.ts.map +1 -0
- package/esm/src/types.js +10 -0
- package/package.json +3 -4
package/esm/deno.d.ts
CHANGED
package/esm/deno.js
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
"name": "@seyuna/cli",
|
|
3
|
-
"version": "1.0.0-canary.
|
|
4
|
-
"exports":
|
|
3
|
+
"version": "1.0.0-canary.27",
|
|
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"}
|
package/esm/src/types.js
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seyuna/cli",
|
|
3
|
-
"version": "1.0.0-canary.
|
|
3
|
+
"version": "1.0.0-canary.27",
|
|
4
4
|
"description": "Seyuna CLI",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -12,9 +12,8 @@
|
|
|
12
12
|
},
|
|
13
13
|
"module": "./esm/src/main.js",
|
|
14
14
|
"exports": {
|
|
15
|
-
".":
|
|
16
|
-
|
|
17
|
-
}
|
|
15
|
+
".": "./esm/src/main.js",
|
|
16
|
+
"./types": "./esm/types.js"
|
|
18
17
|
},
|
|
19
18
|
"scripts": {},
|
|
20
19
|
"engines": {
|