Skip to content

Commit

Permalink
fix(js): dont ignore args option on node executor (#17463)
Browse files Browse the repository at this point in the history
  • Loading branch information
mandarini committed Jun 7, 2023
1 parent 05fb178 commit 417ac38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/js/src/executors/node/node.impl.ts
Expand Up @@ -141,7 +141,7 @@ export async function* nodeExecutor(
task.promise = new Promise<void>((resolve, reject) => {
task.childProcess = fork(
joinPathFragments(__dirname, 'node-with-require-overrides'),
options.runtimeArgs ?? [],
options.args ?? [],
{
execArgv: getExecArgv(options),
stdio: [0, 1, 'pipe', 'ipc'],
Expand Down

1 comment on commit 417ac38

@vercel
Copy link

@vercel vercel bot commented on 417ac38 Jun 7, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

nx-dev – ./

nx-dev-git-master-nrwl.vercel.app
nx-dev-nrwl.vercel.app
nx-five.vercel.app
nx.dev

Please sign in to comment.