@storm-software/workspace-tools 1.54.2 → 1.55.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,20 @@
1
+ ## 1.55.0 (2024-02-07)
2
+
3
+
4
+ ### 🚀 Features
5
+
6
+ - **config:** Added a base config package to allow neutral access of `StormConfig` ([164eaa5b](https://github.com/storm-software/storm-ops/commit/164eaa5b))
7
+
8
+
9
+ ### 🩹 Fixes
10
+
11
+ - **workspace-tools:** Resolved accumulator spread linting issue ([ecf50f97](https://github.com/storm-software/storm-ops/commit/ecf50f97))
12
+
13
+
14
+ ### ❤️ Thank You
15
+
16
+ - Patrick Sullivan
17
+
1
18
 
2
19
 
3
20
  ## 1.54.1 (2024-02-06)
package/declarations.d.ts CHANGED
@@ -2,6 +2,7 @@ import type { StormConfig } from "@storm-software/config-tools";
2
2
  import type { TsupExecutorSchema } from "./src/executors/tsup/schema";
3
3
  import type { ExecutorContext } from "@nx/devkit";
4
4
  import type { Tree } from "@nx/devkit";
5
+ import type { Options } from "tsup";
5
6
 
6
7
  export interface TsupContext {
7
8
  projectRoot: string;
@@ -10,6 +11,11 @@ export interface TsupContext {
10
11
  main: string;
11
12
  }
12
13
 
14
+ export type BuildOptions = Options;
15
+
16
+ declare function outExtension({ format }: { format?: string }): { js: string; dts: string };
17
+ export { outExtension };
18
+
13
19
  declare function applyDefaultOptions(options: TsupExecutorSchema): TsupExecutorSchema;
14
20
  export { applyDefaultOptions };
15
21