()
| 16 | ]; |
| 17 | |
| 18 | function getPluginPath(): string { |
| 19 | // babel-plugin-awel-source.cjs lives at the root of the cli package, |
| 20 | // which is one level up from dist/ (where this compiled file lives). |
| 21 | return join(__dirname, '..', '..', 'babel-plugin-awel-source.cjs'); |
| 22 | } |
| 23 | |
| 24 | function hasPackageJsonBabelKey(projectCwd: string): boolean { |
| 25 | const pkgPath = join(projectCwd, 'package.json'); |
no outgoing calls
no test coverage detected