UNPKG

gplint

Version:

A Gherkin linter/validator written in Javascript.

13 lines 453 B
import yargs from 'yargs'; import { hideBin } from 'yargs/helpers'; import * as commands from './commands/index.js'; import * as options from './options/index.js'; import { LIB_VERSION } from '../version.js'; await yargs(hideBin(process.argv)) .options(options) .command(Object.values(commands)) .usage('gplint [options] <feature-files>') .version(LIB_VERSION) .parse(); export * from '../types.js'; //# sourceMappingURL=index.js.map