@storm-software/workspace-tools 1.130.0 → 1.132.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 (31) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/README.md +3 -1
  3. package/config/nx.json +1 -1
  4. package/index.js +148 -121
  5. package/meta.json +1 -1
  6. package/package.json +1 -1
  7. package/packages/build-tools/src/config/get-unbuild-config.d.ts +2 -2
  8. package/packages/build-tools/src/types.d.ts +2 -1
  9. package/packages/config/src/define-config.d.ts +18 -0
  10. package/packages/config/src/schema.d.ts +254 -0
  11. package/packages/config-tools/src/config-file/get-config-file.d.ts +1 -1
  12. package/packages/config-tools/src/utilities/get-default-config.d.ts +1 -1
  13. package/packages/config-tools/src/utilities/logger.d.ts +1 -1
  14. package/src/base/index.js +138 -111
  15. package/src/executors/clean-package/executor.js +38 -10
  16. package/src/executors/rolldown/executor.js +38 -10
  17. package/src/executors/size-limit/executor.js +38 -10
  18. package/src/executors/tsup/executor.js +38 -10
  19. package/src/executors/tsup-browser/executor.js +38 -10
  20. package/src/executors/tsup-neutral/executor.js +38 -10
  21. package/src/executors/tsup-node/executor.js +38 -10
  22. package/src/executors/typia/executor.js +38 -10
  23. package/src/executors/unbuild/executor.js +38 -10
  24. package/src/executors/unbuild/schema.json +13 -0
  25. package/src/generators/browser-library/generator.js +138 -111
  26. package/src/generators/config-schema/generator.js +38 -10
  27. package/src/generators/neutral-library/generator.js +138 -111
  28. package/src/generators/node-library/generator.js +138 -111
  29. package/src/generators/preset/generator.js +40 -12
  30. package/src/generators/release-version/generator.js +46 -18
  31. package/src/utils/index.js +38 -10
@@ -1,5 +1,5 @@
1
- import { ResolvedConfig, type LoadConfigOptions } from "c12";
2
1
  import type { StormConfigInput } from "@storm-software/config";
2
+ import { ResolvedConfig, type LoadConfigOptions } from "c12";
3
3
  /**
4
4
  * Get the config file for the current Storm workspace
5
5
  *
@@ -1,4 +1,4 @@
1
- import { type StormConfig, type ColorConfig } from "@storm-software/config";
1
+ import { type ColorConfig, type StormConfig } from "@storm-software/config";
2
2
  /**
3
3
  * Storm theme config values used for styling various workspace elements
4
4
  */
@@ -1,5 +1,5 @@
1
- import { LogLevel } from "../types";
2
1
  import type { StormConfig } from "@storm-software/config";
2
+ import { LogLevel } from "../types";
3
3
  /**
4
4
  * Get the log function for a log level
5
5
  *