@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 +24 -0
- package/README.md +1 -1
- package/executors.json +8 -3
- package/index.d.ts +2 -0
- package/index.js +437 -120
- package/meta.json +216 -4
- package/package.json +1 -1
- package/src/executors/tsdown/executor.d.ts +8 -0
- package/src/executors/tsdown/schema.d.ts +3 -0
- package/src/executors/tsdown/schema.json +122 -0
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
|
-
[](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/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
|
|
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";
|