docs: fix config exports typo (#8444)

This commit is contained in:
Gael Pasgrimaud 2021-01-28 09:36:38 +01:00 committed by GitHub
parent 34350e9252
commit 9bfb546274
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -16,7 +16,7 @@ Let's look at an example of configuring packages with existing Angular migration
Add two properties to `config.js`: `allowPostUpgradeCommandTemplating` and `allowedPostUpgradeCommands`
```javascript
module.export = {
module.exports = {
allowPostUpgradeCommandTemplating: true,
allowedPostUpgradeCommands: ['^npm ci --ignore-scripts$', '^npx ng update'],
};