@storm-software/workspace-tools 1.60.9 → 1.60.11

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.
@@ -1,7 +0,0 @@
1
- import type { BuildExecutorSchema } from "@nxkit/style-dictionary";
2
- import type { CreateConfigOptions } from "@storm-software/design-tools";
3
-
4
- export type DesignTokensExecutorSchema = Omit<BuildExecutorSchema, "styleDictionaryConfig"> &
5
- CreateConfigOptions;
6
-
7
- export type NormalizedDesignTokensExecutorSchema = DesignTokensExecutorSchema;
@@ -1,74 +0,0 @@
1
- {
2
- "$schema": "http://json-schema.org/schema",
3
- "$id": "design-tokens",
4
- "version": 2,
5
- "title": "Design Tokens Code Builder",
6
- "description": "Create styling source code from design tokens json file(s) exported from Figma Tokens Studio",
7
- "type": "object",
8
- "properties": {
9
- "inputPath": {
10
- "type": "string",
11
- "description": "The path to the tokens json file(s) exported from Figma Tokens Studio."
12
- },
13
- "type": {
14
- "type": "string",
15
- "description": "The type of code to generate based on the supplied tokens (TailWind CSS, Tamagui, etc.).",
16
- "default": "tailwindcss",
17
- "enum": ["tailwindcss", "tamagui", "all"]
18
- },
19
- "tsConfig": {
20
- "type": "string",
21
- "description": "Path to the typescript config file."
22
- },
23
- "customActions": {
24
- "type": "string",
25
- "description": "Path to the ts file exporting the custom actions to register.",
26
- "x-completion-type": "file"
27
- },
28
- "customFileHeaders": {
29
- "type": "string",
30
- "description": "Path to the ts file exporting the custom file headers to register.",
31
- "x-completion-type": "file"
32
- },
33
- "customFilters": {
34
- "type": "string",
35
- "description": "Path to the ts file exporting the custom filters to register.",
36
- "x-completion-type": "file"
37
- },
38
- "customFormats": {
39
- "type": "string",
40
- "description": "Path to the ts file exporting the custom formats to register.",
41
- "x-completion-type": "file"
42
- },
43
- "customParsers": {
44
- "type": "string",
45
- "description": "Path to the ts file exporting the custom parsers to register.",
46
- "x-completion-type": "file"
47
- },
48
- "customTransformGroups": {
49
- "type": "string",
50
- "description": "Path to the ts file exporting the custom transform groups to register.",
51
- "x-completion-type": "file"
52
- },
53
- "customTransforms": {
54
- "type": "string",
55
- "description": "Path to the ts file exporting the custom transform to register.",
56
- "x-completion-type": "file"
57
- },
58
- "outputPath": {
59
- "type": "string",
60
- "description": "The output path of the generated files.",
61
- "x-completion-type": "directory"
62
- },
63
- "deleteOutputPath": {
64
- "type": "boolean",
65
- "description": "Delete the output path before building.",
66
- "default": true
67
- },
68
- "platform": {
69
- "type": "string",
70
- "description": "Build only the passed platform defined in the configuration."
71
- }
72
- },
73
- "required": ["tsConfig", "inputPath", "type"]
74
- }
@@ -1,11 +0,0 @@
1
- import { BuildExecutorSchema } from "@nxkit/style-dictionary";
2
- import { CreateConfigOptions } from "@storm-software/design-tools";
3
-
4
- export type DesignTokensGeneratorSchema = Omit<
5
- BuildExecutorSchema,
6
- "styleDictionaryConfig"
7
- > &
8
- CreateConfigOptions;
9
-
10
- export type NormalizedDesignTokensGeneratorSchema =
11
- DesignTokensGeneratorSchema & NormalizedBuildExecutorSchema;
@@ -1,74 +0,0 @@
1
- {
2
- "$schema": "http://json-schema.org/schema",
3
- "$id": "design-tokens",
4
- "version": 2,
5
- "title": "Design Tokens Code Generator",
6
- "description": "Create styling source code from design tokens json file(s) exported from Figma Tokens Studio",
7
- "type": "object",
8
- "properties": {
9
- "inputPath": {
10
- "type": "string",
11
- "description": "The path to the tokens json file(s) exported from Figma Tokens Studio."
12
- },
13
- "type": {
14
- "type": "string",
15
- "description": "The type of code to generate based on the supplied tokens (TailWind CSS, Tamagui, etc.).",
16
- "default": "tailwindcss",
17
- "enum": ["tailwindcss", "tamagui", "all"]
18
- },
19
- "tsConfig": {
20
- "type": "string",
21
- "description": "Path to the typescript config file."
22
- },
23
- "customActions": {
24
- "type": "string",
25
- "description": "Path to the ts file exporting the custom actions to register.",
26
- "x-completion-type": "file"
27
- },
28
- "customFileHeaders": {
29
- "type": "string",
30
- "description": "Path to the ts file exporting the custom file headers to register.",
31
- "x-completion-type": "file"
32
- },
33
- "customFilters": {
34
- "type": "string",
35
- "description": "Path to the ts file exporting the custom filters to register.",
36
- "x-completion-type": "file"
37
- },
38
- "customFormats": {
39
- "type": "string",
40
- "description": "Path to the ts file exporting the custom formats to register.",
41
- "x-completion-type": "file"
42
- },
43
- "customParsers": {
44
- "type": "string",
45
- "description": "Path to the ts file exporting the custom parsers to register.",
46
- "x-completion-type": "file"
47
- },
48
- "customTransformGroups": {
49
- "type": "string",
50
- "description": "Path to the ts file exporting the custom transform groups to register.",
51
- "x-completion-type": "file"
52
- },
53
- "customTransforms": {
54
- "type": "string",
55
- "description": "Path to the ts file exporting the custom transform to register.",
56
- "x-completion-type": "file"
57
- },
58
- "outputPath": {
59
- "type": "string",
60
- "description": "The output path of the generated files.",
61
- "x-completion-type": "directory"
62
- },
63
- "deleteOutputPath": {
64
- "type": "boolean",
65
- "description": "Delete the output path before building.",
66
- "default": true
67
- },
68
- "platform": {
69
- "type": "string",
70
- "description": "Build only the passed platform defined in the configuration."
71
- }
72
- },
73
- "required": ["tsConfig", "inputPath", "type"]
74
- }