()
| 77 | let currentWatchFiles; |
| 78 | |
| 79 | const getWatchFiles = () => { |
| 80 | const watchFiles = new Set(); |
| 81 | cssEntries.forEach((entry) => { |
| 82 | entry.watchFiles?.forEach((file) => watchFiles.add(file)); |
| 83 | const entryFile = getEntryFile(entry); |
| 84 | if (!watchFiles.has(entryFile)) { |
| 85 | watchFiles.add(entryFile); |
| 86 | } |
| 87 | }); |
| 88 | currentWatchFiles = Array.from(watchFiles); |
| 89 | return currentWatchFiles; |
| 90 | }; |
| 91 | |
| 92 | const bundleCSS = async ({platforms, debug}) => { |
| 93 | for (const entry of cssEntries) { |
no test coverage detected