(props)
| 10 | |
| 11 | export default new Resolver({ |
| 12 | async resolve(props) { |
| 13 | await initializeState(props) |
| 14 | |
| 15 | return ( |
| 16 | (await handleAlias(props)) || |
| 17 | (await handlePlasmoInternal(props)) || |
| 18 | (await handlePolyfill(props)) || |
| 19 | (await handleRemoteCaching(props)) || |
| 20 | (await handleTildeSrc(props)) || |
| 21 | (await handleAbsoluteRoot(props)) || |
| 22 | null |
| 23 | ) |
| 24 | } |
| 25 | }) |
no test coverage detected
searching dependent graphs…