-
Notifications
You must be signed in to change notification settings - Fork 98
Description
The CONCAT_STATS=true flag of broccoli-concat is used to collect the measured sizes of various pieces a built project and is instrumental in measuring svelting. It puts files in a concat-stats-for subdirectory, and the names of the files include directories with names like 2-vendor.js and 3-vendor.css.
With typescript in play, this hangs the build - perhaps it is being misled by directories that are named like JS and CSS files. Hand-editing the concat-stats-for directory into the list of exclusions in lib/utilities/compile.js enables the build to complete without an issue.
This is probably not the only situation where it would be desirable to exclude a directory from being watched by the TS build. An option to extend the list of exclusions would permit users encountering build issues to keep directories like this out of harm's way.