Commit 170c16f
fix(@angular-devkit/core): workspace writer skip creating empty projects property
Before
```json
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"projects": {},
"cli": {
"analytics": false,
"warnings": {
"versionMismatch": false
}
}
}
````
After
```json
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"cli": {
"analytics": false,
"warnings": {
"versionMismatch": false
}
}
}
```
(cherry picked from commit 1af3f71)1 parent 5521648 commit 170c16f
1 file changed
+3
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
53 | 53 | | |
54 | 54 | | |
55 | 55 | | |
56 | | - | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
57 | 59 | | |
58 | 60 | | |
59 | 61 | | |
| |||
0 commit comments