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-07-24 14:38:54 -07:00
2018-10-11 12:57:49 -07:00
2019-09-10 13:11:48 -04:00
2019-10-02 09:30:59 -07:00
2019-09-05 13:34:01 -04:00
2019-09-26 07:37:54 -07:00
2019-09-27 10:03:22 -07:00
2019-09-10 13:03:36 -04:00
2018-12-05 13:26:26 -08:00
2019-01-11 11:15:59 -08:00
2019-08-26 12:23:07 -07:00