Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | #!/usr/bin/env node import * as fs from "fs-extra"; import * as glob from "glob"; import * as path from "path"; import commander from "commander"; import { globTestIds } from "./glob-test-ids"; const program = new commander.Command("glob-test-ids"); const packageJson = JSON.parse( fs.readFileSync(path.join(__dirname, "..", "package.json")).toString() ); program.version(packageJson.version); program .requiredOption("-i, --ids-location <location>", "glob pattern of id files") .requiredOption("-o, --output <output>", "Output file"); program.parse(process.argv); try { globTestIds({ fs, glob, path })({ idsLocation: program.idsLocation, output: program.output, cwd: process.cwd() }); process.exit(0); } catch (e) { console.error(e); process.exit(1); } |