Alan Agius
5d5c94d83a
feat(service-worker): remove deprecated versionedFiles
option (#32862)
BREAKING CHANGE:
Remove deprecated option `versionedFiles` from service worker asset group configuration in `ngsw-config.json`
Before
```json
"assetGroups": [
{
"name": "test",
"resources": {
"versionedFiles": [
"/**/*.txt"
]
}
}
]
```
After
```json
"assetGroups": [
{
"name": "test",
"resources": {
"files": [
"/**/*.txt"
]
}
}
]
```
PR Close #32862
2019-10-02 09:30:59 -07:00
..
2019-10-02 09:30:59 -07:00
2019-10-02 09:30:59 -07:00
2019-02-26 16:57:41 -08:00
2019-03-07 10:47:20 -08:00
2017-09-28 16:18:12 -07:00
2018-03-18 09:33:51 -07:00
2017-09-28 16:18:12 -07:00
2019-03-05 16:48:26 -08:00