@storm-software/workspace-tools 1.194.0 → 1.196.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 +25 -0
- package/README.md +1 -1
- package/config/nx-cloud.json +1 -1
- package/config/nx-default.json +1 -1
- package/config/nx.json +1 -1
- package/index.js +115 -853
- package/meta.json +75999 -1
- package/package.json +7 -7
- package/src/base/base-executor.js +72 -25
- package/src/base/base-generator.js +72 -25
- package/src/base/index.js +75 -30
- package/src/base/typescript-library-generator.js +3 -5
- package/src/executors/cargo-build/executor.js +72 -25
- package/src/executors/cargo-check/executor.js +72 -25
- package/src/executors/cargo-clippy/executor.js +72 -25
- package/src/executors/cargo-doc/executor.js +72 -25
- package/src/executors/cargo-format/executor.js +72 -25
- package/src/executors/clean-package/executor.js +72 -25
- package/src/executors/rolldown/executor.js +72 -25
- package/src/executors/rollup/executor.js +112 -848
- package/src/executors/size-limit/executor.js +72 -25
- package/src/executors/tsup/executor.js +72 -25
- package/src/executors/tsup-browser/executor.js +72 -25
- package/src/executors/tsup-neutral/executor.js +72 -25
- package/src/executors/tsup-node/executor.js +72 -25
- package/src/executors/typia/executor.js +72 -25
- package/src/executors/unbuild/executor.js +72 -25
- package/src/generators/browser-library/generator.js +75 -30
- package/src/generators/config-schema/generator.js +72 -25
- package/src/generators/neutral-library/generator.js +75 -30
- package/src/generators/node-library/generator.js +75 -30
- package/src/generators/preset/generator.js +72 -25
- package/src/generators/release-version/generator.js +72 -25
- package/src/plugins/typescript/index.js +6 -1
- package/src/utils/index.js +72 -25
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,28 @@
|
|
|
1
|
+
## 1.196.0 (2024-11-01)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
- **eslint:** Resolve type issues with Nx plugin in preset
|
|
6
|
+
([d27162e2](https://github.com/storm-software/storm-ops/commit/d27162e2))
|
|
7
|
+
|
|
8
|
+
## 1.195.0 (2024-10-31)
|
|
9
|
+
|
|
10
|
+
### Features
|
|
11
|
+
|
|
12
|
+
- **workspace-tools:** Update the Nx package code to conform to latest type
|
|
13
|
+
definitions
|
|
14
|
+
([b1dbdff8](https://github.com/storm-software/storm-ops/commit/b1dbdff8))
|
|
15
|
+
- **storm-ops:** Upgrade the Nx package versions used in the repository
|
|
16
|
+
([369fad24](https://github.com/storm-software/storm-ops/commit/369fad24))
|
|
17
|
+
- **config:** Added the `link` color token to Storm configuration
|
|
18
|
+
([c66f39ed](https://github.com/storm-software/storm-ops/commit/c66f39ed))
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
- **cloudflare-tools:** Remove references to removed `projectNameAndRootFormat`
|
|
23
|
+
Nx options
|
|
24
|
+
([7db6e9d6](https://github.com/storm-software/storm-ops/commit/7db6e9d6))
|
|
25
|
+
|
|
1
26
|
## 1.194.0 (2024-10-22)
|
|
2
27
|
|
|
3
28
|
### Features
|
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
21
21
|
|
|
22
22
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
23
23
|
|
|
24
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
25
25
|
|
|
26
26
|
<!-- prettier-ignore-start -->
|
|
27
27
|
<!-- markdownlint-disable -->
|
package/config/nx-cloud.json
CHANGED
|
@@ -322,7 +322,7 @@
|
|
|
322
322
|
"dependsOn": ["^format-toml"],
|
|
323
323
|
"executor": "nx:run-commands",
|
|
324
324
|
"options": {
|
|
325
|
-
"command": "pnpm exec taplo format --colors=\"always\" --config=\"./node_modules/@storm-software/linting-tools/taplo/.
|
|
325
|
+
"command": "pnpm exec taplo format --colors=\"always\" --config=\"./node_modules/@storm-software/linting-tools/taplo/.config.toml\" --cache-path=\"./tmp/taplo/{projectRoot}\"",
|
|
326
326
|
"color": true
|
|
327
327
|
}
|
|
328
328
|
},
|
package/config/nx-default.json
CHANGED
|
@@ -348,7 +348,7 @@
|
|
|
348
348
|
"dependsOn": ["^format-toml"],
|
|
349
349
|
"executor": "nx:run-commands",
|
|
350
350
|
"options": {
|
|
351
|
-
"command": "pnpm exec taplo format --colors=\"always\" --config=\"./node_modules/@storm-software/linting-tools/taplo/.
|
|
351
|
+
"command": "pnpm exec taplo format --colors=\"always\" --config=\"./node_modules/@storm-software/linting-tools/taplo/.config.toml\" --cache-path=\"./tmp/taplo/{projectRoot}\"",
|
|
352
352
|
"color": true
|
|
353
353
|
}
|
|
354
354
|
},
|
package/config/nx.json
CHANGED
|
@@ -348,7 +348,7 @@
|
|
|
348
348
|
"dependsOn": ["^format-toml"],
|
|
349
349
|
"executor": "nx:run-commands",
|
|
350
350
|
"options": {
|
|
351
|
-
"command": "pnpm exec taplo format --colors=\"always\" --config=\"./node_modules/@storm-software/linting-tools/taplo/.
|
|
351
|
+
"command": "pnpm exec taplo format --colors=\"always\" --config=\"./node_modules/@storm-software/linting-tools/taplo/.config.toml\" --cache-path=\"./tmp/taplo/{projectRoot}\"",
|
|
352
352
|
"color": true
|
|
353
353
|
}
|
|
354
354
|
},
|