Mutate a code like a boss — with Angular schematics
This article tells you how we are trying to do work with schematics easily and how to work with AST outside schematics in any project.
All of my long-form thoughts on programming,and more, collected in chronological order.
This article tells you how we are trying to do work with schematics easily and how to work with AST outside schematics in any project.
Angular Universal is an open-source project that extends the functionality of @angular/platform-server. The project makes server-side rendering possible in Angular. This article will discuss the issues and possible solutions we encountered while developing a real application with Angular Universal.
Angular CLI v8.0.0 brought us a stable CLI Builders API, which allows you to customize, replace, or even create new CLI commandsNow the most popular builder for customizing the `webpack` configuration is @angular-builders/custom-webpack. If you look at the source code of all the builders supplied with the package, you will see very compact solutions that do not exceed 30 lines of code. Maybe make your own? Challenge Accepted!