@razorwind/style-dictionary 0.0.2 → 0.0.3
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.cts +2 -2
- package/dist/index.d.mts +2 -2
- package/package.json +3 -3
package/dist/index.d.cts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
+
import { Config, PlatformConfig } from "style-dictionary/types";
|
|
1
2
|
import { GeneratedDocument } from "@power-plant/core";
|
|
2
3
|
import { Schema } from "@razorwind/core/schema";
|
|
3
|
-
import { Config, PlatformConfig } from "style-dictionary/types";
|
|
4
4
|
//#region src/types.d.ts
|
|
5
5
|
/**
|
|
6
6
|
* Options for the Razorwind Style Dictionary generator plugin.
|
|
@@ -70,7 +70,7 @@ declare function generateStyleDictionary(spec: Schema, options?: StyleDictionary
|
|
|
70
70
|
* });
|
|
71
71
|
* ```
|
|
72
72
|
*/
|
|
73
|
-
declare const _default: (options?:
|
|
73
|
+
declare const _default: (options?: StyleDictionaryPluginOptions | undefined) => import("@razorwind/core/plugin").Plugin;
|
|
74
74
|
//#endregion
|
|
75
75
|
export { type PlatformConfig, type StyleDictionaryPluginOptions, _default as default, generateStyleDictionary };
|
|
76
76
|
//# sourceMappingURL=index.d.cts.map
|
package/dist/index.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
+
import { Config, PlatformConfig } from "style-dictionary/types";
|
|
1
2
|
import { GeneratedDocument } from "@power-plant/core";
|
|
2
3
|
import { Schema } from "@razorwind/core/schema";
|
|
3
|
-
import { Config, PlatformConfig } from "style-dictionary/types";
|
|
4
4
|
//#region src/types.d.ts
|
|
5
5
|
/**
|
|
6
6
|
* Options for the Razorwind Style Dictionary generator plugin.
|
|
@@ -70,7 +70,7 @@ declare function generateStyleDictionary(spec: Schema, options?: StyleDictionary
|
|
|
70
70
|
* });
|
|
71
71
|
* ```
|
|
72
72
|
*/
|
|
73
|
-
declare const _default: (options?:
|
|
73
|
+
declare const _default: (options?: StyleDictionaryPluginOptions | undefined) => import("@razorwind/core/plugin").Plugin;
|
|
74
74
|
//#endregion
|
|
75
75
|
export { type PlatformConfig, type StyleDictionaryPluginOptions, _default as default, generateStyleDictionary };
|
|
76
76
|
//# sourceMappingURL=index.d.mts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@razorwind/style-dictionary",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Razorwind plugin that uses Style Dictionary to generate code from Razorwind design tokens.",
|
|
6
6
|
"repository": {
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"typings": "dist/index.d.mts",
|
|
71
71
|
"dependencies": {
|
|
72
72
|
"@power-plant/core": "^0.0.61",
|
|
73
|
-
"@razorwind/core": "^0.0.
|
|
73
|
+
"@razorwind/core": "^0.0.17",
|
|
74
74
|
"@stryke/type-checks": "^0.6.32",
|
|
75
75
|
"style-dictionary": "^5.5.0"
|
|
76
76
|
},
|
|
@@ -80,5 +80,5 @@
|
|
|
80
80
|
"typescript": "^6.0.3"
|
|
81
81
|
},
|
|
82
82
|
"publishConfig": { "access": "public" },
|
|
83
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "3cc5b85aebb2434cd4395b99e9cab9b9223ff6db"
|
|
84
84
|
}
|