@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.
Files changed (39) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/declarations.d.ts +4 -2
  3. package/index.js +22670 -18654
  4. package/meta.json +522 -446
  5. package/package.json +3 -2
  6. package/src/base/base-executor.js +9 -2
  7. package/src/base/base-generator.js +9 -2
  8. package/src/base/index.js +12 -2
  9. package/src/base/typescript-library-generator.js +3 -0
  10. package/src/executors/cargo-build/executor.js +9 -2
  11. package/src/executors/cargo-check/executor.js +9 -2
  12. package/src/executors/cargo-clippy/executor.js +9 -2
  13. package/src/executors/cargo-doc/executor.js +9 -2
  14. package/src/executors/cargo-format/executor.js +9 -2
  15. package/src/executors/clean-package/executor.js +9 -2
  16. package/src/executors/rolldown/executor.js +9 -2
  17. package/src/executors/rollup/executor.js +19813 -15811
  18. package/src/executors/size-limit/executor.js +9 -2
  19. package/src/executors/tsup/executor.js +9 -2
  20. package/src/executors/tsup-browser/executor.js +9 -2
  21. package/src/executors/tsup-neutral/executor.js +9 -2
  22. package/src/executors/tsup-node/executor.js +9 -2
  23. package/src/executors/typia/executor.js +9 -2
  24. package/src/executors/unbuild/executor.js +9 -2
  25. package/src/generators/browser-library/generator.js +12 -2
  26. package/src/generators/config-schema/generator.js +9 -2
  27. package/src/generators/neutral-library/generator.js +12 -2
  28. package/src/generators/node-library/generator.js +12 -2
  29. package/src/generators/preset/generator.js +9 -2
  30. package/src/generators/release-version/generator.js +9 -2
  31. package/src/plugins/rust/cargo-toml.d.ts +1 -1
  32. package/src/plugins/rust/index.js +15 -3
  33. package/src/plugins/typescript/index.js +15 -3
  34. package/src/plugins/typescript/project-config.d.ts +1 -1
  35. package/src/plugins/typescript/tsup.d.ts +3 -0
  36. package/src/plugins/typescript/tsup.js +232 -0
  37. package/src/utils/index.js +24 -3
  38. package/src/utils/project-tags.d.ts +5 -1
  39. 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";