Skip to content

Commit

Permalink
fix(node): use @nrwl/node:node for app serve (#9177)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaysoo committed Mar 3, 2022
1 parent bf513b1 commit bf62996
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -67,7 +67,7 @@ describe('app', () => {
},
},
serve: {
builder: '@nrwl/node:execute',
builder: '@nrwl/node:node',
options: {
buildTarget: 'my-node-app:build',
},
Expand Down
2 changes: 1 addition & 1 deletion packages/node/src/generators/application/application.ts
Expand Up @@ -74,7 +74,7 @@ function getBuildConfig(

function getServeConfig(options: NormalizedSchema): TargetConfiguration {
return {
executor: '@nrwl/node:execute',
executor: '@nrwl/node:node',
options: {
buildTarget: `${options.name}:build`,
},
Expand Down

0 comments on commit bf62996

Please sign in to comment.