(id)
| 7 | const transformPlugin = { |
| 8 | name: 'transform', |
| 9 | load(id) { |
| 10 | if (id === file) { |
| 11 | // Ensure `index.js` is reloaded if 'plugin-dep-load.js' is changed |
| 12 | this.addWatchFile('./plugin-dep-load.js') |
| 13 | } |
| 14 | }, |
| 15 | transform(code, id) { |
| 16 | if (id === file) { |
| 17 | // Ensure `index.js` is reevaluated if 'plugin-dep.js' is changed |
nothing calls this directly
no test coverage detected