You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the v8 migration produces a browserlist file for every application. This should be filtered to applications which use @angular-devkit/build-angular:browser.
🔬 Minimal Reproduction
npx -p @nrwl/schematics@latest create-nx-workspace fullstack-ws --preset full-stack --no-interactive
cd fullstack-ws
ng update @angular/cli @angular/core --next --force
## 🔥 Issue
`apps/api/browserslist` is created which is a backend project which does not need Differential Loading.
## Expected Behavior
`browserlist` should only be created for projects which use `@angular-devkit/build-angular:browser` for at least one of their targets.
cc @filipesilva
## 🌍 Your Environment
Fullstack workspace
The text was updated successfully, but these errors were encountered:
…nly for projects using `@angular-devkit/build-angular:browser`
Differential loading migration should run only when the project is using `@angular-devkit/build-angular:browser` as it's browser builder. Otherwise we might break applications that are using different builders.
Fixes#14389
…nly for projects using `@angular-devkit/build-angular:browser`
Differential loading migration should run only when the project is using `@angular-devkit/build-angular:browser` as it's browser builder. Otherwise we might break applications that are using different builders.
Fixes#14389
🐞 Bug report
Scope
v8 Browerlist migration
Is this a regression?
No, this is an enhancement to current behavior
Description
Currently, the v8 migration produces a
browserlist
file for everyapplication
. This should be filtered toapplication
s which use@angular-devkit/build-angular:browser
.🔬 Minimal Reproduction
The text was updated successfully, but these errors were encountered: