@@ -33,15 +33,31 @@ The following options are also available.
3333 * __ optional__
3434 * Default: ` production ` (string)
3535 * Example:
36- * ` ng deploy ` -- Angular project is build in production mode
37- * ` ng deploy --configuration=qs ` -- Angular project is using the configuration ` qs ` (this configuration must exist in the ` angular.json ` file)
36+ * ` ng deploy ` – Angular project is build in production mode
37+ * ` ng deploy --configuration=test ` – Angular project is using the configuration ` test ` (this configuration must exist in the ` angular.json ` file)
3838
3939A named build target, as specified in the ` configurations ` section of ` angular.json ` .
4040Each named target is accompanied by a configuration of option defaults for that target.
4141Same as ` ng build --configuration=XXX ` .
42+ This command has no effect if the option ` --no-build ` option is active.
4243
4344> ** This is a proposal from [ RFC #1 ] ( https://github.com/angular-schule/ngx-deploy-starter/issues/1 ) .**
4445
46+
47+ #### --no-build
48+ * __ optional__
49+ * Default: ` false ` (string)
50+ * Example:
51+ * ` ng deploy ` – Angular project is build in production mode before the deployment
52+ * ` ng deploy --no-build ` – Angular project is NOT build
53+
54+ Skip build process during deployment.
55+ This can be used when you are sure that you haven't changed anything and want to deploy with the latest artifact.
56+ This command causes the ` --configuration ` setting to have no effect.
57+
58+ > ** This is a proposal from [ RFC #1 ] ( https://github.com/angular-schule/ngx-deploy-starter/issues/1 ) .**
59+
60+
4561#### --target-dir
4662 * __ optional__
4763 * Default: ` /example-folder ` (string)
@@ -51,6 +67,7 @@ Same as `ng build --configuration=XXX`.
5167
5268> ** This is one of the options you can freely choose according to your needs.**
5369
70+
5471#### --base-href <a name =" base-href " ></a >
5572 * __ optional__
5673 * Default: ` undefined ` (string)
0 commit comments