@storm-software/workspace-tools 1.68.1 → 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/CHANGELOG.md +30 -0
- package/index.js +3833 -21461
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/base/index.js +2 -2
- package/src/executors/rolldown/executor.js +4653 -22281
- package/src/executors/tsup/executor.js +2 -2
- package/src/executors/tsup-browser/executor.js +2 -2
- package/src/executors/tsup-neutral/executor.js +2 -2
- package/src/executors/tsup-node/executor.js +2 -2
- package/src/executors/typia/executor.js +2 -2
- package/src/generators/browser-library/generator.js +2 -2
- package/src/generators/config-schema/generator.js +2 -2
- package/src/generators/neutral-library/generator.js +2 -2
- package/src/generators/node-library/generator.js +2 -2
- package/src/generators/preset/generator.js +2 -2
- package/src/generators/release-version/generator.js +2 -2
- package/src/utils/index.js +2 -2
package/package.json
CHANGED
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
|
|
218239
|
+
stdio,
|
|
218240
218240
|
maxBuffer: LARGE_BUFFER,
|
|
218241
218241
|
killSignal: "SIGTERM"
|
|
218242
218242
|
});
|