@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.
- package/CHANGELOG.md +7 -0
- package/index.js +156 -149
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/tsup-neutral/executor.js +1543 -1406
- package/src/executors/tsup-neutral/schema.d.ts +2 -2
- package/src/executors/tsup-node/executor.js +4 -4
|
@@ -116617,10 +116617,10 @@ var tsNodeBuildExecutorFn = (options, context, config) => {
|
|
|
116617
116617
|
);
|
|
116618
116618
|
};
|
|
116619
116619
|
var applyDefaultOptions2 = (options) => {
|
|
116620
|
-
|
|
116621
|
-
|
|
116622
|
-
|
|
116623
|
-
|
|
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)",
|