(config: BuildConfig)
| 115 | } |
| 116 | |
| 117 | async function getQwikDomVersion(config: BuildConfig) { |
| 118 | const pkgJsonPath = join(config.packagesDir, 'qwik-dom'); |
| 119 | const pkgJson = await readPackageJson(pkgJsonPath); |
| 120 | return pkgJson.version; |
| 121 | } |
| 122 | |
| 123 | const browserCjsRequireShim = ` |
| 124 | if (typeof require !== 'function' && typeof location !== 'undefined' && typeof navigator !== 'undefined') { |
no test coverage detected
searching dependent graphs…