Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
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
6 changes: 3 additions & 3 deletions generators/angular/resources/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
"devDependencies": {
"@angular-architects/module-federation": "21.2.2",
"@angular-architects/module-federation-runtime": "21.2.2",
"@angular-builders/custom-esbuild": "21.0.3",
"@angular-builders/custom-webpack": "21.0.3",
"@angular-builders/custom-esbuild": "21.1.0",
"@angular-builders/custom-webpack": "21.1.0",
"@angular/build": "21.2.13",
"@angular/cli": "21.2.13",
"@eslint/js": "10.0.1",
Expand All @@ -46,7 +46,7 @@
"typescript-eslint": "8.62.1",
"vitest": "4.1.9",
"vitest-sonar-reporter": "3.0.0",
"webpack": "5.106.2",
"webpack": "5.108.3",
"webpack-bundle-analyzer": "5.3.0",
"webpack-merge": "6.0.1",
"webpack-notifier": "1.15.0"
Expand Down
2 changes: 1 addition & 1 deletion generators/angular/templates/angular.json.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
"outputHashing": "all",
"sourceMap": false,
"namedChunks": <%- new Boolean(microfrontend) %>,
"extractLicenses": true,
"extractLicenses": <%- !microfrontend %>,

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

Suggested change
"extractLicenses": <%- !microfrontend %>,
"extractLicenses": false,

"vendorChunk": false,
"buildOptimizer": true,
"serviceWorker": true,
Expand Down
2 changes: 1 addition & 1 deletion generators/angular/templates/angular.json.esbuild.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
"outputHashing": "all",
"sourceMap": false,
"namedChunks": <%- new Boolean(microfrontend) %>,
"extractLicenses": true,
"extractLicenses": <%- !microfrontend %>,

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

Suggested change
"extractLicenses": <%- !microfrontend %>,
"extractLicenses": true,

"budgets": [
{
"type": "initial",
Expand Down
Loading