@storm-software/workspace-tools 1.60.19 → 1.60.21
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/CHANGELOG.md +24 -0
- package/README.md +3 -65
- package/index.js +108 -2518
- package/meta.json +1 -1
- package/package.json +2 -5
- package/src/base/index.js +90 -90
- package/src/executors/tsup/executor.js +82 -2492
- package/src/executors/tsup-browser/executor.js +82 -2492
- package/src/executors/tsup-neutral/executor.js +82 -2492
- package/src/executors/tsup-node/executor.js +82 -2492
- package/src/generators/browser-library/generator.js +90 -90
- package/src/generators/neutral-library/generator.js +90 -90
- package/src/generators/node-library/generator.js +90 -90
- package/src/generators/release-version/generator.js +8 -8
- package/src/utils/index.js +12 -2422
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
## 1.60.21 (2024-02-24)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### 🩹 Fixes
|
|
5
|
+
|
|
6
|
+
- **workspace-tools:** Update build compiler parameters ([3c6cb525](https://github.com/storm-software/storm-ops/commit/3c6cb525))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### ❤️ Thank You
|
|
10
|
+
|
|
11
|
+
- Patrick Sullivan
|
|
12
|
+
|
|
13
|
+
## 1.60.20 (2024-02-24)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### 🩹 Fixes
|
|
17
|
+
|
|
18
|
+
- **workspace-tools:** Added esbuild to externals list ([28e99927](https://github.com/storm-software/storm-ops/commit/28e99927))
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### ❤️ Thank You
|
|
22
|
+
|
|
23
|
+
- Patrick Sullivan
|
|
24
|
+
|
|
1
25
|
## 1.60.19 (2024-02-24)
|
|
2
26
|
|
|
3
27
|
|
package/README.md
CHANGED
|
@@ -16,7 +16,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
16
16
|
|
|
17
17
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.org" target="_blank">stormsoftware.org</a> to stay up to date with this developer</h3><br />
|
|
18
18
|
|
|
19
|
-
[](https://prettier.io/)
|
|
20
20
|
[](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://docusaurus.io/) 
|
|
21
21
|
|
|
22
22
|
> [!IMPORTANT]
|
|
@@ -190,45 +190,6 @@ nx run my-project:tsup-browser
|
|
|
190
190
|
|
|
191
191
|
|
|
192
192
|
|
|
193
|
-
## Design Tokens Code Builder
|
|
194
|
-
|
|
195
|
-
Create styling source code from design tokens json file(s) exported from Figma Tokens Studio
|
|
196
|
-
|
|
197
|
-
### Example
|
|
198
|
-
|
|
199
|
-
This executor can be used by executing the following in a command line utility:
|
|
200
|
-
|
|
201
|
-
```cmd
|
|
202
|
-
nx run my-project:design-tokens
|
|
203
|
-
```
|
|
204
|
-
|
|
205
|
-
**Please note:** _The design-tokens executor should be included in the desired projects's `project.json` file.All required options must be included in the `options` property of the json._
|
|
206
|
-
|
|
207
|
-
### Options
|
|
208
|
-
|
|
209
|
-
The following executor options are available:
|
|
210
|
-
|
|
211
|
-
| Option | Type | Description | Default |
|
|
212
|
-
| --------- | ------ | ------------- | --------- |
|
|
213
|
-
| **inputPath \*** | `string` | The path to the tokens json file(s) exported from Figma Tokens Studio. | |
|
|
214
|
-
| **type \*** | "tailwindcss" \| "tamagui" \| "all" | The type of code to generate based on the supplied tokens (TailWind CSS, Tamagui, etc.). | "tailwindcss" |
|
|
215
|
-
| **tsConfig \*** | `string` | Path to the typescript config file. | |
|
|
216
|
-
| customActions | `string` | Path to the ts file exporting the custom actions to register. | |
|
|
217
|
-
| customFileHeaders | `string` | Path to the ts file exporting the custom file headers to register. | |
|
|
218
|
-
| customFilters | `string` | Path to the ts file exporting the custom filters to register. | |
|
|
219
|
-
| customFormats | `string` | Path to the ts file exporting the custom formats to register. | |
|
|
220
|
-
| customParsers | `string` | Path to the ts file exporting the custom parsers to register. | |
|
|
221
|
-
| customTransformGroups | `string` | Path to the ts file exporting the custom transform groups to register. | |
|
|
222
|
-
| customTransforms | `string` | Path to the ts file exporting the custom transform to register. | |
|
|
223
|
-
| outputPath | `string` | The output path of the generated files. | |
|
|
224
|
-
| deleteOutputPath | `boolean` | Delete the output path before building. | `true` |
|
|
225
|
-
| platform | `string` | Build only the passed platform defined in the configuration. | |
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
**Please note:** _Option names followed by \* above are required, and must be provided to run the executor._
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
193
|
## Typia Generate Executor
|
|
233
194
|
|
|
234
195
|
Run the Typia generator to create runtime type validators
|
|
@@ -477,32 +438,9 @@ The following executor options are available:
|
|
|
477
438
|
|
|
478
439
|
|
|
479
440
|
|
|
480
|
-
##
|
|
481
|
-
|
|
482
|
-
Create styling source code from design tokens json file(s) exported from Figma Tokens Studio
|
|
483
|
-
|
|
484
|
-
### Options
|
|
485
|
-
|
|
486
|
-
The following executor options are available:
|
|
487
|
-
|
|
488
|
-
| Option | Type | Description | Default |
|
|
489
|
-
| --------- | ------ | ------------- | --------- |
|
|
490
|
-
| **inputPath \*** | `string` | The path to the tokens json file(s) exported from Figma Tokens Studio. | |
|
|
491
|
-
| **type \*** | "tailwindcss" \| "tamagui" \| "all" | The type of code to generate based on the supplied tokens (TailWind CSS, Tamagui, etc.). | "tailwindcss" |
|
|
492
|
-
| **tsConfig \*** | `string` | Path to the typescript config file. | |
|
|
493
|
-
| customActions | `string` | Path to the ts file exporting the custom actions to register. | |
|
|
494
|
-
| customFileHeaders | `string` | Path to the ts file exporting the custom file headers to register. | |
|
|
495
|
-
| customFilters | `string` | Path to the ts file exporting the custom filters to register. | |
|
|
496
|
-
| customFormats | `string` | Path to the ts file exporting the custom formats to register. | |
|
|
497
|
-
| customParsers | `string` | Path to the ts file exporting the custom parsers to register. | |
|
|
498
|
-
| customTransformGroups | `string` | Path to the ts file exporting the custom transform groups to register. | |
|
|
499
|
-
| customTransforms | `string` | Path to the ts file exporting the custom transform to register. | |
|
|
500
|
-
| outputPath | `string` | The output path of the generated files. | |
|
|
501
|
-
| deleteOutputPath | `boolean` | Delete the output path before building. | `true` |
|
|
502
|
-
| platform | `string` | Build only the passed platform defined in the configuration. | |
|
|
441
|
+
## design-tokens
|
|
503
442
|
|
|
504
|
-
|
|
505
|
-
**Please note:** _Option names followed by \* above are required, and must be provided to run the executor._
|
|
443
|
+
Generate design tokens code using a Token Studio export
|
|
506
444
|
|
|
507
445
|
|
|
508
446
|
|