mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-25 08:41:39 +08:00
The type of entryFiles from entryPoint is array in webpack official suggested, but actually it could be string. The error caused by `every` method which is only invoked by array, however entryFiles is a string. Solution: if entryFiles is not array, make it as an array which includes just a single string element.