@storm-software/workspace-tools 1.79.0 β 1.82.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 +28 -0
- package/README.md +1 -1
- package/config/nx.json +1 -1
- package/index.js +3852 -3740
- package/meta.json +1 -1
- package/package.json +6 -6
- package/packages/config/src/define-config.d.ts +6 -0
- package/packages/config/src/schema.d.ts +45 -0
- package/packages/workspace-tools/src/executors/cargo-publish/executor.d.ts +1 -1
- package/src/base/index.js +5004 -4848
- package/src/executors/cargo-publish/executor.js +21 -12
- package/src/executors/cargo-publish/schema.d.ts +1 -0
- package/src/executors/cargo-publish/schema.json +6 -1
- package/src/executors/npm-publish/executor.js +32 -19
- package/src/executors/npm-publish/schema.json +3 -4
- package/src/executors/rolldown/executor.js +3811 -3778
- package/src/executors/tsup/executor.js +3811 -3778
- package/src/executors/tsup-browser/executor.js +3811 -3778
- package/src/executors/tsup-neutral/executor.js +3811 -3778
- package/src/executors/tsup-node/executor.js +3811 -3778
- package/src/executors/typia/executor.js +3811 -3778
- package/src/executors/unbuild/executor.js +3811 -3778
- package/src/generators/browser-library/generator.js +5004 -4848
- package/src/generators/config-schema/generator.js +3753 -3720
- package/src/generators/neutral-library/generator.js +5004 -4848
- package/src/generators/node-library/generator.js +5004 -4848
- package/src/generators/preset/generator.js +3819 -3786
- package/src/generators/release-version/generator.js +3784 -3795
- package/src/plugins/rust/index.js +6 -2
- package/src/plugins/typescript/index.js +1 -3
- package/src/utils/index.js +3811 -3778
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,31 @@
|
|
|
1
|
+
## 1.82.0 (2024-06-03)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### π Features
|
|
5
|
+
|
|
6
|
+
- **config:** Added the `registry` configuration node ([708668a4](https://github.com/storm-software/storm-ops/commit/708668a4))
|
|
7
|
+
|
|
8
|
+
## 1.81.0 (2024-06-03)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### π Features
|
|
12
|
+
|
|
13
|
+
- **storm-ops:** Upgrade Nx packages and resolve linting issues ([685c2bb9](https://github.com/storm-software/storm-ops/commit/685c2bb9))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### π©Ή Fixes
|
|
17
|
+
|
|
18
|
+
- **deps:** update dependencies-non-major ([#181](https://github.com/storm-software/storm-ops/pull/181))
|
|
19
|
+
|
|
20
|
+
- **deps:** update dependency bundle-require to v5 ([#182](https://github.com/storm-software/storm-ops/pull/182))
|
|
21
|
+
|
|
22
|
+
## 1.80.0 (2024-06-02)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### π Features
|
|
26
|
+
|
|
27
|
+
- **config-tools:** Enhance the validations for the `cloudflareAccountId` configuration ([9fbc1954](https://github.com/storm-software/storm-ops/commit/9fbc1954))
|
|
28
|
+
|
|
1
29
|
## 1.79.0 (2024-05-29)
|
|
2
30
|
|
|
3
31
|
|
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/)
|
|
25
25
|
[](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://docusaurus.io/) 
|
|
26
26
|
|
|
27
27
|
> [!IMPORTANT]
|
package/config/nx.json
CHANGED
|
@@ -225,7 +225,7 @@
|
|
|
225
225
|
"release": {
|
|
226
226
|
"projects": ["packages/*", "crates/*"],
|
|
227
227
|
"projectsRelationship": "independent",
|
|
228
|
-
"releaseTagPattern": "{projectName}
|
|
228
|
+
"releaseTagPattern": "{projectName}@{version}",
|
|
229
229
|
"changelog": {
|
|
230
230
|
"automaticFromRef": true,
|
|
231
231
|
"workspaceChangelog": false,
|