@storm-software/workspace-tools 1.42.3 → 1.43.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/CHANGELOG.md +14 -0
- package/config/nx.json +1 -3
- package/index.js +396 -230
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/base/index.js +387 -221
- package/src/executors/design-tokens/executor.js +393 -227
- package/src/executors/tsup/executor.js +383 -217
- package/src/executors/tsup-browser/executor.js +383 -217
- package/src/executors/tsup-neutral/executor.js +383 -217
- package/src/executors/tsup-node/executor.js +383 -217
- package/src/generators/browser-library/generator.js +266 -189
- package/src/generators/config-schema/generator.js +246 -169
- package/src/generators/neutral-library/generator.js +266 -189
- package/src/generators/node-library/generator.js +266 -189
- package/src/generators/preset/generator.js +246 -169
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [1.42.4](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.42.3...workspace-tools-v1.42.4) (2024-01-15)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **workspace-tools:** Many code quality improvements and enhanced linting rules ([d2123cf](https://github.com/storm-software/storm-ops/commit/d2123cf87850b1442b8e7c1ed4b3ccc07f2a8673))
|
|
7
|
+
|
|
8
|
+
## [1.42.3](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.42.2...workspace-tools-v1.42.3) (2024-01-15)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **workspace-tools:** Resolved issue preventing neutral builds from running ([0939172](https://github.com/storm-software/storm-ops/commit/0939172f5e7cc9e0a940437cdf18d6cdf3766fb3))
|
|
14
|
+
|
|
1
15
|
## [1.42.2](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.42.1...workspace-tools-v1.42.2) (2024-01-15)
|
|
2
16
|
|
|
3
17
|
|
package/config/nx.json
CHANGED
|
@@ -85,9 +85,7 @@
|
|
|
85
85
|
"executor": "nx:run-commands",
|
|
86
86
|
"outputs": ["{options.outputFile}"],
|
|
87
87
|
"options": {
|
|
88
|
-
"
|
|
89
|
-
"npx biome lint --apply --no-errors-on-unmatched --files-ignore-unknown=true {projectRoot}"
|
|
90
|
-
],
|
|
88
|
+
"command": "npx biome lint --apply --no-errors-on-unmatched --files-ignore-unknown=true {projectRoot}",
|
|
91
89
|
"color": true
|
|
92
90
|
},
|
|
93
91
|
"inputs": ["default", "{workspaceRoot}/**/biome.json"]
|