From b6ae462e777b705b72a31d896ff4e674714e822b Mon Sep 17 00:00:00 2001 From: Tapan Dabhi <37927312+dabhitapan@users.noreply.github.com> Date: Sun, 13 Nov 2022 03:55:11 -0500 Subject: [PATCH] docs(custom-webpack): fix README.md (#1313) fixed README --- packages/custom-webpack/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/custom-webpack/README.md b/packages/custom-webpack/README.md index 988abce74..0b4d357c8 100644 --- a/packages/custom-webpack/README.md +++ b/packages/custom-webpack/README.md @@ -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": { ... } @@ -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": { ... } @@ -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", @@ -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", @@ -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" @@ -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" ...