@storm-software/workspace-tools 1.68.4 → 1.68.6
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 +23 -9
- package/README.md +1 -1
- package/index.js +22 -20
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/rolldown/executor.js +4 -2
package/package.json
CHANGED
|
@@ -218907,7 +218907,6 @@ var _isFunction = (value) => {
|
|
|
218907
218907
|
};
|
|
218908
218908
|
|
|
218909
218909
|
// packages/workspace-tools/src/executors/rolldown/executor.ts
|
|
218910
|
-
var import_build_tools = require("@storm-software/build-tools");
|
|
218911
218910
|
var import_child_process = require("child_process");
|
|
218912
218911
|
async function rolldownExecutorFn(options, context, config) {
|
|
218913
218912
|
const { writeDebug: writeDebug2, writeInfo: writeInfo2, writeSuccess: writeSuccess2 } = await Promise.resolve().then(() => (init_src2(), src_exports));
|
|
@@ -218964,7 +218963,10 @@ var executor_default = withRunExecutor(
|
|
|
218964
218963
|
{
|
|
218965
218964
|
skipReadingConfig: false,
|
|
218966
218965
|
hooks: {
|
|
218967
|
-
applyDefaultOptions:
|
|
218966
|
+
applyDefaultOptions: async (options, config) => {
|
|
218967
|
+
const { applyDefaultRolldownOptions } = await import("@storm-software/build-tools");
|
|
218968
|
+
return applyDefaultRolldownOptions(options, config);
|
|
218969
|
+
}
|
|
218968
218970
|
}
|
|
218969
218971
|
}
|
|
218970
218972
|
);
|