@storm-software/workspace-tools 1.21.8 → 1.21.9

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.
@@ -4,6 +4,6 @@ export type TsupNeutralExecutorSchema = Omit<
4
4
  TsupExecutorSchema,
5
5
  "env" | "platform"
6
6
  > & {
7
- transports?: string[];
8
- platform?: Platform;
7
+ transports: string[];
8
+ platform: Platform;
9
9
  };
@@ -116617,10 +116617,10 @@ var tsNodeBuildExecutorFn = (options, context, config) => {
116617
116617
  );
116618
116618
  };
116619
116619
  var applyDefaultOptions2 = (options) => {
116620
- options = applyDefaultOptions({ ...options, platform: "node" });
116621
- options.plugins ??= [];
116622
- options.transports ??= ["pino-pretty", "pino-loki"];
116623
- return options;
116620
+ return {
116621
+ ...applyDefaultOptions({ plugins: [], ...options, platform: "node" }),
116622
+ transports: ["pino-pretty", "pino-loki"]
116623
+ };
116624
116624
  };
116625
116625
  var executor_default2 = withRunExecutor(
116626
116626
  "TypeScript Build (NodeJs Platform)",