@storm-software/workspace-tools 1.224.1 → 1.225.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 CHANGED
@@ -1,3 +1,27 @@
1
+ ## 1.225.0 (2025-01-12)
2
+
3
+ ### Features
4
+
5
+ - **tsdown:** Initial check-in of the TSBuild package
6
+ ([b1a72514](https://github.com/storm-software/storm-ops/commit/b1a72514))
7
+
8
+ ### Miscellaneous
9
+
10
+ - **monorepo:** Regenerate README markdown files
11
+ ([a104880f](https://github.com/storm-software/storm-ops/commit/a104880f))
12
+
13
+ ### Dependency Upgrades
14
+
15
+ - **monorepo:** Resolve dependency mismatches between packages
16
+ ([72960597](https://github.com/storm-software/storm-ops/commit/72960597))
17
+
18
+ ## 1.224.2 (2025-01-12)
19
+
20
+ ### Bug Fixes
21
+
22
+ - **eslint:** Resolved issue with invalid `cspell` plugin
23
+ ([1c13fb51](https://github.com/storm-software/storm-ops/commit/1c13fb51))
24
+
1
25
  ## 1.224.1 (2025-01-12)
2
26
 
3
27
  ### Bug Fixes
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
- [![Version](https://img.shields.io/badge/version-1.224.0-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
24
+ [![Version](https://img.shields.io/badge/version-1.224.2-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
25
25
 
26
26
  <!-- prettier-ignore-start -->
27
27
  <!-- markdownlint-disable -->
package/executors.json CHANGED
@@ -3,17 +3,22 @@
3
3
  "typia": {
4
4
  "implementation": "./src/executors/typia/executor",
5
5
  "schema": "./src/executors/typia/schema.json",
6
- "description": "Run the Typia generator to create runtime type validators"
6
+ "description": "Run the `typia` generator to create runtime type validators"
7
+ },
8
+ "tsdown": {
9
+ "implementation": "./src/executors/tsdown/executor",
10
+ "schema": "./src/executors/tsdown/schema.json",
11
+ "description": "Run the `tsdown` build process on a selected project"
7
12
  },
8
13
  "esbuild": {
9
14
  "implementation": "./src/executors/esbuild/executor",
10
15
  "schema": "./src/executors/esbuild/schema.json",
11
- "description": "Run the esbuild build process on a selected project"
16
+ "description": "Run the `esbuild` build process on a selected project"
12
17
  },
13
18
  "unbuild": {
14
19
  "implementation": "./src/executors/unbuild/executor",
15
20
  "schema": "./src/executors/unbuild/schema.json",
16
- "description": "Run the unbuild build process on a selected project"
21
+ "description": "Run the `unbuild` build process on a selected project"
17
22
  },
18
23
  "clean-package": {
19
24
  "implementation": "./src/executors/clean-package/executor",
package/index.d.ts CHANGED
@@ -9,6 +9,8 @@ export * from "./src/executors/npm-publish/executor";
9
9
  export * from "./src/executors/npm-publish/schema";
10
10
  export * from "./src/executors/size-limit/executor";
11
11
  export * from "./src/executors/size-limit/schema";
12
+ export * from "./src/executors/tsdown/executor";
13
+ export * from "./src/executors/tsdown/schema";
12
14
  export * from "./src/executors/typia/executor";
13
15
  export * from "./src/executors/typia/schema";
14
16
  export * from "./src/executors/unbuild/executor";