Skip to content

Commit

Permalink
chore(angular): remove super-fluent nullish assignment (nrwl#20382)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pascalmh authored Nov 23, 2023
1 parent 729bb5c commit c8e753a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/angular/plugins/component-testing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ function withSchemaDefaults(options: any): BrowserBuilderSchema {
options.outputHashing ??= 'none';
options.progress ??= true;
options.scripts ??= [];
options.main = options.main ??= options.browser;
options.main ??= options.browser;

return options;
}
Expand Down

0 comments on commit c8e753a

Please sign in to comment.