OLD | NEW |
(Empty) | |
| 1 >>> |
| 2 return options.releaseMode && |
| 3 |
| 4 // TODO(sigmund): remove this exclusion once we have dev_transformers |
| 5 // (dartbug.com/14187) |
| 6 !id.path.startsWith('lib/') && |
| 7 |
| 8 // may filter non-entry HTML files and internal artifacts |
| 9 (id.extension == '.html' || id.extension == _DATA_EXTENSION) && |
| 10 |
| 11 // keep any entry points |
| 12 !options.isHtmlEntryPoint(id); |
| 13 <<< |
| 14 return options.releaseMode && |
| 15 |
| 16 // TODO(sigmund): remove this exclusion once we have dev_transformers |
| 17 // (dartbug.com/14187) |
| 18 !id.path.startsWith('lib/') && |
| 19 |
| 20 // may filter non-entry HTML files and internal artifacts |
| 21 (id.extension == '.html' || id.extension == _DATA_EXTENSION) && |
| 22 |
| 23 // keep any entry points |
| 24 !options.isHtmlEntryPoint(id); |
OLD | NEW |