@storm-software/workspace-tools 1.168.0 → 1.169.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 +16 -0
- package/README.md +1 -1
- package/declarations.d.ts +8 -0
- package/index.js +3143 -260
- package/meta.json +1 -1
- package/package.json +7 -7
- package/src/base/base-executor.js +23 -16
- package/src/base/base-generator.js +23 -16
- package/src/base/index.js +123 -116
- package/src/base/typescript-library-generator.js +100 -100
- package/src/executors/cargo-build/executor.js +23 -16
- package/src/executors/cargo-check/executor.js +23 -16
- package/src/executors/cargo-clippy/executor.js +23 -16
- package/src/executors/cargo-doc/executor.js +23 -16
- package/src/executors/cargo-format/executor.js +23 -16
- package/src/executors/clean-package/executor.js +23 -16
- package/src/executors/rolldown/executor.js +23 -16
- package/src/executors/rollup/executor.js +134 -115
- package/src/executors/size-limit/executor.js +23 -16
- package/src/executors/tsup/executor.js +23 -16
- package/src/executors/tsup-browser/executor.js +23 -16
- package/src/executors/tsup-neutral/executor.js +23 -16
- package/src/executors/tsup-node/executor.js +23 -16
- package/src/executors/typia/executor.js +23 -16
- package/src/executors/unbuild/executor.js +23 -16
- package/src/generators/browser-library/generator.js +123 -116
- package/src/generators/config-schema/generator.js +23 -16
- package/src/generators/neutral-library/generator.js +123 -116
- package/src/generators/node-library/generator.js +123 -116
- package/src/generators/preset/generator.js +23 -16
- package/src/generators/release-version/generator.js +31 -24
- package/src/plugins/rust/index.js +13 -0
- package/src/plugins/typescript/index.js +13 -0
- package/src/utils/index.js +30 -16
- package/src/utils/project-tags.d.ts +8 -1
- package/src/utils/project-tags.js +7 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
## 1.169.0 (2024-09-02)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
- **terraform-modules:** Added the `aws/karpenter` and `cloudflare/r2-bucket`
|
|
6
|
+
modules
|
|
7
|
+
([09deea18](https://github.com/storm-software/storm-ops/commit/09deea18))
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
- **workspace-tools:** Resolved issue with invalid import
|
|
12
|
+
([fdd1c68c](https://github.com/storm-software/storm-ops/commit/fdd1c68c))
|
|
13
|
+
|
|
14
|
+
- **terraform-modules:** Resolved issue with applying tags to resources
|
|
15
|
+
([a0fd5e19](https://github.com/storm-software/storm-ops/commit/a0fd5e19))
|
|
16
|
+
|
|
1
17
|
## 1.168.0 (2024-09-01)
|
|
2
18
|
|
|
3
19
|
### 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/declarations.d.ts
CHANGED
|
@@ -220,6 +220,14 @@ export const ProjectTagDistStyleValue = {
|
|
|
220
220
|
CLEAN: "clean" as ProjectTagDistStyleValue
|
|
221
221
|
};
|
|
222
222
|
|
|
223
|
+
export type ProjectTagRegistryValue = "cargo" | "npm" | "container" | "cyclone";
|
|
224
|
+
export const ProjectTagRegistryValue = {
|
|
225
|
+
CARGO: "cargo" as ProjectTagRegistryValue,
|
|
226
|
+
NPM: "npm" as ProjectTagRegistryValue,
|
|
227
|
+
CONTAINER: "container" as ProjectTagRegistryValue,
|
|
228
|
+
CYCLONE: "cyclone" as ProjectTagRegistryValue
|
|
229
|
+
};
|
|
230
|
+
|
|
223
231
|
declare function formatProjectTag(
|
|
224
232
|
variant: ProjectTagVariant,
|
|
225
233
|
value: string
|