(name: string)
| 15 | const pkgManager = getPackageManager(); |
| 16 | |
| 17 | const getScript = (name: string) => { |
| 18 | if (pkgJsonScripts[name]) { |
| 19 | return `${pkgManager} run ${name}`; |
| 20 | } |
| 21 | return undefined; |
| 22 | }; |
| 23 | |
| 24 | const isPreviewBuild = app.args.includes('preview'); |
| 25 | const buildLibScript = getScript('build.lib'); |
no outgoing calls
no test coverage detected
searching dependent graphs…