(warnings)
| 176 | }, |
| 177 | |
| 178 | NAMESPACE_CONFLICT(warnings) { |
| 179 | title(`Conflicting re-exports`); |
| 180 | for (const warning of warnings) { |
| 181 | stderr( |
| 182 | `"${bold(relativeId(warning.reexporter!))}" re-exports "${ |
| 183 | warning.binding |
| 184 | }" from both "${relativeId(warning.ids![0])}" and "${relativeId( |
| 185 | warning.ids![1] |
| 186 | )}" (will be ignored).` |
| 187 | ); |
| 188 | } |
| 189 | }, |
| 190 | |
| 191 | PLUGIN_WARNING(warnings) { |
| 192 | const nestedByPlugin = nest(warnings, 'plugin'); |
nothing calls this directly
no test coverage detected
searching dependent graphs…