Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
2c7ac43
Enhance project scaffolding by adding 'Other' option for unsupported …
valentinpalkovic Nov 7, 2025
b5e87fc
Refactor command execution by removing 'shell: true' option in variou…
valentinpalkovic Nov 7, 2025
871c615
Update telemetry notification message to remove unnecessary formattin…
valentinpalkovic Nov 7, 2025
bbc59ea
Remove unnecessary formatting from abort messages in task execution f…
valentinpalkovic Nov 7, 2025
a960afd
Refactor FinalizationCommand to remove selectedFeatures parameter, si…
valentinpalkovic Nov 7, 2025
061781a
Remove unnecessary output from initiation completion logger for impro…
valentinpalkovic Nov 7, 2025
78236e1
Add silent flag for npm package manager in Storybook initiation to re…
valentinpalkovic Nov 7, 2025
3ffa86e
Refactor logging output in various components for improved clarity an…
valentinpalkovic Nov 7, 2025
6e1bb50
Update Playwright installation prompt to indicate abort option; remov…
valentinpalkovic Nov 7, 2025
e54f891
Update code/lib/cli-storybook/src/upgrade.ts
valentinpalkovic Nov 7, 2025
897cf7a
Refactor postinstall command execution to use spawnSync for synchrono…
valentinpalkovic Nov 7, 2025
ec6de36
Refactor sandbox function to remove unused borderColor variable and u…
valentinpalkovic Nov 7, 2025
64fbedc
Fix command argument formatting in dispatcher.ts to remove unnecessar…
valentinpalkovic Nov 7, 2025
9719b1d
Refactor postinstall command argument handling for improved clarity b…
valentinpalkovic Nov 7, 2025
bf72e84
Refactor command execution in link.ts to utilize executeCommand for i…
valentinpalkovic Nov 7, 2025
b56df2c
Remove 'skip-install' option from init function in sandbox-parts.ts f…
valentinpalkovic Nov 7, 2025
993b2dd
Add debug logging for version handling in postinstall and package man…
valentinpalkovic Nov 10, 2025
eee9dbe
Enhance version handling in JsPackageManager by incorporating version…
valentinpalkovic Nov 10, 2025
9ba0234
Refactor JsPackageManager tests to use spyOn for mocking latestVersio…
valentinpalkovic Nov 10, 2025
8e2937d
Merge branch 'valentin/cli-init-rework' into valentin/cli-init-rework…
valentinpalkovic Nov 12, 2025
baa5ad6
Refactor command execution in dispatcher and add synchronous command …
valentinpalkovic Nov 12, 2025
116cf23
Refactor taskLog implementation to simplify logging conditions and re…
valentinpalkovic Nov 12, 2025
a84ea41
Refactor command spawning in dispatcher to separate command and argum…
valentinpalkovic Nov 12, 2025
b9eb956
Refactor telemetry error handling to conditionally send errors only w…
valentinpalkovic Nov 12, 2025
f9221a8
Update stdio configuration in AddonVitestService to inherit and pipe …
valentinpalkovic Nov 12, 2025
ae93da3
Update Playwright installation command in AddonVitestService to use '…
valentinpalkovic Nov 12, 2025
80a78e7
Update automigration logging to handle optional fixId for improved cl…
valentinpalkovic Nov 12, 2025
a2d573b
Merge branch 'valentin/cli-init-rework' into valentin/cli-init-rework…
valentinpalkovic Nov 13, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Refactor command spawning in dispatcher to separate command and argum…
…ents for improved clarity
  • Loading branch information
valentinpalkovic committed Nov 12, 2025
commit a84ea41dd251151a979d18232167d7a75d0abda3
2 changes: 1 addition & 1 deletion code/core/src/bin/dispatcher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ async function run() {
}
command ??= ['npx', '--yes', `${targetCli.pkg}@${versions[targetCli.pkg]}`, ...targetCli.args];

const child = spawn(command.join(' '), { stdio: 'inherit' });
const child = spawn(command[0], command.slice(1), { stdio: 'inherit' });
Comment thread
valentinpalkovic marked this conversation as resolved.
child.on('exit', (code) => {
process.exit(code);
});
Expand Down
Loading