Skip to content

Commit

Permalink
docs(custom-webpack): fix README.md (#1313)
Browse files Browse the repository at this point in the history
fixed README
  • Loading branch information
dabhitapan authored Nov 13, 2022
1 parent eb1a6e2 commit b6ae462
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/custom-webpack/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Allow customizing build configuration without ejecting webpack configuration (`n
"architect": {
...
"[architect-target]": {
"builder": "@angular-builders/custom-webpack:[browser|server|karma|dev-server|extract-i18n]"
"builder": "@angular-builders/custom-webpack:[browser|server|karma|dev-server|extract-i18n]",
"options": {
...
}
Expand All @@ -63,7 +63,7 @@ Allow customizing build configuration without ejecting webpack configuration (`n
"architect": {
...
"build": {
"builder": "@angular-builders/custom-webpack:browser"
"builder": "@angular-builders/custom-webpack:browser",
"options": {
...
}
Expand Down Expand Up @@ -95,7 +95,7 @@ Builder options:
"architect": {
...
"build": {
"builder": "@angular-builders/custom-webpack:browser"
"builder": "@angular-builders/custom-webpack:browser",
"options": {
"customWebpackConfig": {
"path": "./extra-webpack.config.js",
Expand Down Expand Up @@ -164,7 +164,7 @@ Builder options:
"architect": {
...
"build": {
"builder": "@angular-builders/custom-webpack:server"
"builder": "@angular-builders/custom-webpack:server",
"options": {
"customWebpackConfig": {
"path": "./extra-webpack.config.js",
Expand Down Expand Up @@ -200,7 +200,7 @@ Builder options:
"architect": {
...
"test": {
"builder": "@angular-builders/custom-webpack:karma"
"builder": "@angular-builders/custom-webpack:karma",
"options": {
"customWebpackConfig": {
"path": "./extra-webpack.config.js"
Expand Down Expand Up @@ -458,7 +458,7 @@ It is useful when you want to transform your `index.html` according to the build
"architect": {
...
"build": {
"builder": "@angular-builders/custom-webpack:browser"
"builder": "@angular-builders/custom-webpack:browser",
"options": {
"indexTransform": "./index-html-transform.js"
...
Expand Down

0 comments on commit b6ae462

Please sign in to comment.