@storm-software/workspace-tools 1.31.0 → 1.31.1
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
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [1.31.0](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.30.14...workspace-tools-v1.31.0) (2023-12-15)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **design-tools:** Added design tools package to support storm design systems ([187a38f](https://github.com/storm-software/storm-ops/commit/187a38fc7ce8f992ff96ad210058089da909f1b6))
|
|
7
|
+
|
|
1
8
|
## [1.30.14](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.30.13...workspace-tools-v1.30.14) (2023-12-15)
|
|
2
9
|
|
|
3
10
|
|
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
|
<h3 align="center" bold="true">⚠️ <b>Attention</b> ⚠️ This repository, and the apps, libraries, and tools contained within, is still in it's initial development phase. As a result, bugs and issues are expected with it's usage. When the main development phase completes, a proper release will be performed, the packages will be availible through NPM (and other distributions), and this message will be removed. However, in the meantime, please feel free to report any issues you may come across.</h3><br />
|
|
@@ -103,7 +103,7 @@ The following executor options are available:
|
|
|
103
103
|
| assets | `array` | List of static assets. | `[]` |
|
|
104
104
|
| clean | `boolean` | Remove previous output before build. | `true` |
|
|
105
105
|
| includeSrc | `boolean` | Should the source files be added to the distribution folder in an \`src\` directory. | |
|
|
106
|
-
|
|
|
106
|
+
| emitOnAll | `boolean` | Should each file contained in the package be emitted individually. | `true` |
|
|
107
107
|
| generatePackageJson | `boolean` | Should a package.json file be generated in the output folder or should the existing one be copied in. | `true` |
|
|
108
108
|
| splitting | `boolean` | Should the build process preform \*code-splitting\*? | `true` |
|
|
109
109
|
| treeshake | `boolean` | Should the build process \*tree-shake\* to remove unused code? | `true` |
|
|
@@ -182,6 +182,45 @@ nx run my-project:tsup-browser
|
|
|
182
182
|
|
|
183
183
|
|
|
184
184
|
|
|
185
|
+
## Design Tokens Code Builder
|
|
186
|
+
|
|
187
|
+
Create styling source code from design tokens json file(s) exported from Figma Tokens Studio
|
|
188
|
+
|
|
189
|
+
### Example
|
|
190
|
+
|
|
191
|
+
This executor can be used by executing the following in a command line utility:
|
|
192
|
+
|
|
193
|
+
```cmd
|
|
194
|
+
nx run my-project:design-tokens
|
|
195
|
+
```
|
|
196
|
+
|
|
197
|
+
**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._
|
|
198
|
+
|
|
199
|
+
### Options
|
|
200
|
+
|
|
201
|
+
The following executor options are available:
|
|
202
|
+
|
|
203
|
+
| Option | Type | Description | Default |
|
|
204
|
+
| --------- | ------ | ------------- | --------- |
|
|
205
|
+
| **inputPath \*** | `string` | The path to the tokens json file(s) exported from Figma Tokens Studio. | |
|
|
206
|
+
| **type \*** | "tailwindcss" \| "tamagui" \| "all" | The type of code to generate based on the supplied tokens (TailWind CSS, Tamagui, etc.). | "tailwindcss" |
|
|
207
|
+
| **tsConfig \*** | `string` | Path to the typescript config file. | |
|
|
208
|
+
| customActions | `string` | Path to the ts file exporting the custom actions to register. | |
|
|
209
|
+
| customFileHeaders | `string` | Path to the ts file exporting the custom file headers to register. | |
|
|
210
|
+
| customFilters | `string` | Path to the ts file exporting the custom filters to register. | |
|
|
211
|
+
| customFormats | `string` | Path to the ts file exporting the custom formats to register. | |
|
|
212
|
+
| customParsers | `string` | Path to the ts file exporting the custom parsers to register. | |
|
|
213
|
+
| customTransformGroups | `string` | Path to the ts file exporting the custom transform groups to register. | |
|
|
214
|
+
| customTransforms | `string` | Path to the ts file exporting the custom transform to register. | |
|
|
215
|
+
| outputPath | `string` | The output path of the generated files. | |
|
|
216
|
+
| deleteOutputPath | `boolean` | Delete the output path before building. | `true` |
|
|
217
|
+
| platform | `string` | Build only the passed platform defined in the configuration. | |
|
|
218
|
+
|
|
219
|
+
|
|
220
|
+
**Please note:** _Option names followed by \* above are required, and must be provided to run the executor._
|
|
221
|
+
|
|
222
|
+
|
|
223
|
+
|
|
185
224
|
<!-- markdownlint-restore -->
|
|
186
225
|
<!-- prettier-ignore-end -->
|
|
187
226
|
|
package/package.json
CHANGED
|
@@ -13,13 +13,12 @@ SENTRY_PROPERTIES="apps/web/app"
|
|
|
13
13
|
DEFAULT_LOCALE="en_US"
|
|
14
14
|
DEFAULT_TIMEZONE="America/New_York"
|
|
15
15
|
|
|
16
|
-
|
|
17
|
-
STORM_REPO_OWNER="sullivanpj"
|
|
16
|
+
STORM_OWNER="sullivanpj"
|
|
18
17
|
STORM_WORKER="stormie-bot"
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
18
|
+
STORM_ORGANIZATION="<%= organization %>"
|
|
19
|
+
STORM_NAMESPACE="<%= name %>"
|
|
20
|
+
STORM_NAMESPACESPACE="<%= namespace %>"
|
|
21
|
+
STORM_REPOSITORY="<%= repositoryUrl %>"
|
|
23
22
|
STORM_BRANCH="main"
|
|
24
23
|
STORM_PRE_MAJOR=false
|
|
25
24
|
|
|
@@ -17,7 +17,7 @@ env:
|
|
|
17
17
|
CI: true
|
|
18
18
|
NX_VERBOSE_LOGGING: true
|
|
19
19
|
STORM_WORKER: stormie-bot
|
|
20
|
-
|
|
20
|
+
STORM_REPOSITORY: ${{ github.repositoryUrl }}
|
|
21
21
|
STORM_WORKSPACE_ROOT: ${{ github.workspace }}
|
|
22
22
|
NX_BASE: ${{ github.base_ref }}
|
|
23
23
|
NX_HEAD: ${{ github.head_ref }}
|
|
@@ -87,5 +87,5 @@ jobs:
|
|
|
87
87
|
NODE_AUTH_TOKEN: ${{ env.NPM_TOKEN }}
|
|
88
88
|
STORM_WORKER: ${{ env.STORM_WORKER }}
|
|
89
89
|
STORM_WORKSPACE_ROOT: ${{ github.workspace }}
|
|
90
|
-
|
|
90
|
+
STORM_REPOSITORY: ${{ github.repositoryUrl }}
|
|
91
91
|
TAG: ${{ inputs.tag }}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<div align="center"><img src="https://pub-761b436209f44a4d886487c917806c08.r2.dev/logo-banner.png" width="100%"
|
|
1
|
+
<div align="center"><img src="https://pub-761b436209f44a4d886487c917806c08.r2.dev/logo-banner.png" width="100%" alt="Storm Software" /></div>
|
|
2
2
|
|
|
3
3
|
<br />
|
|
4
4
|
<div align="center">
|
|
@@ -174,7 +174,7 @@ Run `pnpm graph` to see a diagram of the dependencies of the Open System project
|
|
|
174
174
|
|
|
175
175
|
Nx caches the output of any previously run command such as testing and building, so it can replay the cached results instead of rerunning it. Nx Cloud allows you to share the computation cache across everyone in your team and CI.
|
|
176
176
|
|
|
177
|
-
<p align="center"><img src="https://pub-4661138852db4e5da99a6660fbf9b633.r2.dev/Nx Cloud - Dashboard.png" width="100%"
|
|
177
|
+
<p align="center"><img src="https://pub-4661138852db4e5da99a6660fbf9b633.r2.dev/Nx Cloud - Dashboard.png" width="100%" alt="Nx Cloud - Dashboard" /></p>
|
|
178
178
|
|
|
179
179
|
## Distributed Computation Caching & Distributed Task Execution
|
|
180
180
|
|
|
@@ -260,7 +260,7 @@ This project follows the [all-contributors](https://github.com/all-contributors/
|
|
|
260
260
|
<h1 align="center"></h1>
|
|
261
261
|
<br />
|
|
262
262
|
<div align="center">
|
|
263
|
-
<img src="https://pub-e71cff0f90204755bc910518d63cacf8.r2.dev/logo-opengraph.gif" width="100%"/>
|
|
263
|
+
<img src="https://pub-e71cff0f90204755bc910518d63cacf8.r2.dev/logo-opengraph.gif" width="100%" alt="Storm Software" />
|
|
264
264
|
</div>
|
|
265
265
|
<div align="center">
|
|
266
266
|
<a href="https://stormsoftware.org" target="_blank">Website</a> | <a href="https://stormsoftware.org/contact" target="_blank">Contact</a> | <a href="https://linkedin.com/in/patrick-sullivan-865526b0" target="_blank">LinkedIn</a> | <a href="https://medium.com/@pat.joseph.sullivan" target="_blank">Medium</a> | <a href="https://github.com/sullivanpj" target="_blank">GitHub</a> | <a href="https://keybase.io/sullivanp" target="_blank">OpenPGP Key</a>
|