@storm-software/workspace-tools 1.68.2 → 1.68.3

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.2",
3
+ "version": "1.68.3",
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": [
package/src/base/index.js CHANGED
@@ -218229,14 +218229,14 @@ var init_run = __esm({
218229
218229
  "packages/config-tools/src/utilities/run.ts"() {
218230
218230
  import_node_child_process = require("node:child_process");
218231
218231
  LARGE_BUFFER = 1024 * 1e6;
218232
- run = (config, command, cwd = config.workspaceRoot ?? process.cwd()) => {
218232
+ run = (config, command, cwd = config.workspaceRoot ?? process.cwd(), stdio = "inherit") => {
218233
218233
  return (0, import_node_child_process.execSync)(command, {
218234
218234
  cwd,
218235
218235
  env: {
218236
218236
  ...process.env,
218237
218237
  FORCE_COLOR: "true"
218238
218238
  },
218239
- stdio: "inherit",
218239
+ stdio,
218240
218240
  maxBuffer: LARGE_BUFFER,
218241
218241
  killSignal: "SIGTERM"
218242
218242
  });