I have the following npm scipt:
ng build core --configuration production && ng build module-one --configuration production && ng build module-two --configuration production && ng build module-three --configuration production && ng build module-four --configuration production && ng build automate --configuration production && ng build store --configuration production",
I tried to add the skipping char \
before a line break but it breaks the code:
ng build core --configuration production && ng build module-one --configuration production && \
ng build module-two --configuration production && ng build module-three --configuration production && \
ng build module-four --configuration production && ng build automate --configuration production && \
ng build store --configuration production"
This is a styling choice to improve code readability, without functional difference.