@storm-software/workspace-tools 1.204.0 → 1.206.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 +14 -0
- package/declarations.d.ts +4 -2
- package/index.js +22670 -18654
- package/meta.json +522 -446
- package/package.json +3 -2
- package/src/base/base-executor.js +9 -2
- package/src/base/base-generator.js +9 -2
- package/src/base/index.js +12 -2
- package/src/base/typescript-library-generator.js +3 -0
- package/src/executors/cargo-build/executor.js +9 -2
- package/src/executors/cargo-check/executor.js +9 -2
- package/src/executors/cargo-clippy/executor.js +9 -2
- package/src/executors/cargo-doc/executor.js +9 -2
- package/src/executors/cargo-format/executor.js +9 -2
- package/src/executors/clean-package/executor.js +9 -2
- package/src/executors/rolldown/executor.js +9 -2
- package/src/executors/rollup/executor.js +19813 -15811
- package/src/executors/size-limit/executor.js +9 -2
- package/src/executors/tsup/executor.js +9 -2
- package/src/executors/tsup-browser/executor.js +9 -2
- package/src/executors/tsup-neutral/executor.js +9 -2
- package/src/executors/tsup-node/executor.js +9 -2
- package/src/executors/typia/executor.js +9 -2
- package/src/executors/unbuild/executor.js +9 -2
- package/src/generators/browser-library/generator.js +12 -2
- package/src/generators/config-schema/generator.js +9 -2
- package/src/generators/neutral-library/generator.js +12 -2
- package/src/generators/node-library/generator.js +12 -2
- package/src/generators/preset/generator.js +9 -2
- package/src/generators/release-version/generator.js +9 -2
- package/src/plugins/rust/cargo-toml.d.ts +1 -1
- package/src/plugins/rust/index.js +15 -3
- package/src/plugins/typescript/index.js +15 -3
- package/src/plugins/typescript/project-config.d.ts +1 -1
- package/src/plugins/typescript/tsup.d.ts +3 -0
- package/src/plugins/typescript/tsup.js +232 -0
- package/src/utils/index.js +24 -3
- package/src/utils/project-tags.d.ts +5 -1
- package/src/utils/project-tags.js +15 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## 1.206.0 (2024-12-22)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
- **unbuild:** Initial check-in of the `unbuild` package
|
|
6
|
+
([fc246154](https://github.com/storm-software/storm-ops/commit/fc246154))
|
|
7
|
+
|
|
8
|
+
## 1.205.0 (2024-12-19)
|
|
9
|
+
|
|
10
|
+
### Features
|
|
11
|
+
|
|
12
|
+
- **workspace-tools:** Added `platform` tag to the TypeScript Nx plugin
|
|
13
|
+
([f6911898](https://github.com/storm-software/storm-ops/commit/f6911898))
|
|
14
|
+
|
|
1
15
|
## 1.204.0 (2024-12-19)
|
|
2
16
|
|
|
3
17
|
### Features
|
package/declarations.d.ts
CHANGED
|
@@ -200,14 +200,16 @@ export type ProjectTagVariant =
|
|
|
200
200
|
| "dist-style"
|
|
201
201
|
| "provider"
|
|
202
202
|
| "platform"
|
|
203
|
-
| "registry"
|
|
203
|
+
| "registry"
|
|
204
|
+
| "plugin";
|
|
204
205
|
export const ProjectTagVariant = {
|
|
205
206
|
LANGUAGE: "language" as ProjectTagVariant,
|
|
206
207
|
TYPE: "type" as ProjectTagVariant,
|
|
207
208
|
DIST_STYLE: "dist-style" as ProjectTagVariant,
|
|
208
209
|
PROVIDER: "provider" as ProjectTagVariant,
|
|
209
210
|
PLATFORM: "platform" as ProjectTagVariant,
|
|
210
|
-
REGISTRY: "registry" as ProjectTagVariant
|
|
211
|
+
REGISTRY: "registry" as ProjectTagVariant,
|
|
212
|
+
PLUGIN: "plugin" as ProjectTagVariant
|
|
211
213
|
};
|
|
212
214
|
|
|
213
215
|
export type ProjectTagLanguageValue = "typescript" | "rust";
|