()
| 36 | const invalidationSubpath = 'packages/babel-plugin-react-compiler/dist'; |
| 37 | let version: number | null = null; |
| 38 | export function clearRequireCache() { |
| 39 | Object.keys(require.cache).forEach(function (path) { |
| 40 | if (path.includes(invalidationSubpath)) { |
| 41 | delete require.cache[path]; |
| 42 | } |
| 43 | }); |
| 44 | } |
| 45 | |
| 46 | async function compile( |
| 47 | input: string, |