@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/workspace-tools",
3
- "version": "1.68.4",
3
+ "version": "1.68.6",
4
4
  "private": false,
5
5
  "description": "⚡ A Nx plugin package that contains various executors and generators used in a Storm workspaces.",
6
6
  "keywords": [
@@ -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: import_build_tools.applyDefaultRolldownOptions
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
  );