Revision c6b618d02074b3b74af9c8dec13b90c6e177e113 authored by George Kalpakas on 27 April 2018, 23:01:28 UTC, committed by Alex Rickabaugh on 15 May 2018, 19:19:08 UTC
Since `versionedFiles` behaves in the exact same way as `files`, there
is no reaason to have both. Users should use `files` instead.

This commit deprecates the property and prints a warning when coming
across an asset-group that uses it. It should be completely removed in
a future version.

Note, it has also been removed from the default `ngsw-config.json`
template in angular/devkit#754.

PR Close #23584
1 parent ad6052e
Raw File
.editorconfig
# http://editorconfig.org

root = true

[*]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true

[*.md]
insert_final_newline = false
trim_trailing_whitespace = false
back to top