angular-cn/packages/core/schematics/migrations/postinstall-ngcc/README.md

22 lines
373 B
Markdown
Raw Normal View History

## Postinstall ngcc migration
Automatically adds a postinstall script to `package.json` to run `ngcc`.
If a postinstall script is already there and does not call `ngcc`, the call will be prepended.
#### Before
```json
{
"scripts": {
"postinstall": "do-something"
}
}
```
#### After
```json
{
"scripts": {
"postinstall": "ngcc ... && do-something"
}
}
```