@csszyx/cli 0.6.2 → 0.8.0
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.d.ts → index.d.mts} +3 -2
- package/dist/{index.js → index.mjs} +497 -564
- package/package.json +17 -13
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
|
|
2
2
|
/**
|
|
3
3
|
* CLI command: generate-types
|
|
4
4
|
*
|
|
@@ -235,4 +235,5 @@ interface TransformOptions {
|
|
|
235
235
|
*/
|
|
236
236
|
declare function transformSource(source: string, filePath: string, options?: TransformOptions): TransformResult;
|
|
237
237
|
|
|
238
|
-
export {
|
|
238
|
+
export { classNameToSzObject, extractScreenKeys, extractSpacingKeys, findConfigFile, flattenColors, generateAndWriteTypes, generateTypeDeclarations, generateTypes, transformSource as migrateSource, scanTailwindConfig, writeDeclarationFile };
|
|
239
|
+
export type { CsszyxTodoEntry, CsszyxTodoMap, GenerateTypesOptions, GeneratorOptions, TransformResult as MigrateResult, ResolvedTheme, ScanResult };
|