|
| 1 | +import kleur from 'kleur'; |
| 2 | +import path from 'path'; |
| 3 | +import fs from 'fs-extra'; |
| 4 | +import type { Input } from '../types'; |
| 5 | +import { spawn } from '../utils/spawn'; |
| 6 | +import dedent from 'dedent'; |
| 7 | +import del from 'del'; |
| 8 | + |
| 9 | +type Options = Omit<Input, 'output'> & { |
| 10 | + options?: { |
| 11 | + script?: string; |
| 12 | + clean?: string; |
| 13 | + }; |
| 14 | +}; |
| 15 | + |
| 16 | +export default async function customTarget({ options, root, report }: Options) { |
| 17 | + if (options?.script == null) { |
| 18 | + report.error( |
| 19 | + dedent( |
| 20 | + `No script was provided with the custom target. |
| 21 | + Example: ${kleur.green('{["custom", { "script": "generateTypes" }}')}` |
| 22 | + ) |
| 23 | + ); |
| 24 | + process.exit(1); |
| 25 | + } |
| 26 | + |
| 27 | + const pathToClean = options.clean |
| 28 | + ? path.relative(root, options.clean) |
| 29 | + : undefined; |
| 30 | + |
| 31 | + if (pathToClean) { |
| 32 | + report.info(`Cleaning up ${kleur.blue(pathToClean)}`); |
| 33 | + |
| 34 | + await del([path.resolve(root, pathToClean)]); |
| 35 | + } |
| 36 | + |
| 37 | + const packageManagerExecutable = process.env.npm_execpath ?? 'npm'; |
| 38 | + const packageManagerArgs = ['run', options.script]; |
| 39 | + |
| 40 | + // usr/bin/yarn -> yarn |
| 41 | + const packageManagerName = path.basename(packageManagerExecutable); |
| 42 | + report.info( |
| 43 | + `Running ${kleur.blue(packageManagerName)} ${kleur.blue( |
| 44 | + packageManagerArgs.join(' ') |
| 45 | + )}` |
| 46 | + ); |
| 47 | + |
| 48 | + try { |
| 49 | + await spawn(packageManagerExecutable, packageManagerArgs, { |
| 50 | + stdio: ['ignore', 'ignore', 'inherit'], |
| 51 | + }); |
| 52 | + } catch (e) { |
| 53 | + report.error( |
| 54 | + `An error occurred when running ${kleur.blue(options.script)}` |
| 55 | + ); |
| 56 | + process.exit(1); |
| 57 | + } |
| 58 | + |
| 59 | + report.success(`Ran the ${kleur.blue(options.script)} script succesfully`); |
| 60 | + |
| 61 | + if (options.clean && pathToClean && !(await fs.pathExists(pathToClean))) { |
| 62 | + report.warn( |
| 63 | + `Custom target with the ${kleur.blue( |
| 64 | + options.script |
| 65 | + )} script has ${kleur.blue(options.clean)} as the ${kleur.bold( |
| 66 | + 'clean' |
| 67 | + )} option but this path wasn't created after running the script. Are you sure you've defined the ${kleur.bold( |
| 68 | + 'clean' |
| 69 | + )} path correctly?` |
| 70 | + ); |
| 71 | + } |
| 72 | +} |
0 commit comments