@mauriora/minimist-better-ajv-errors-cli
TypeScript icon, indicating that this package has built-in type declarations

0.0.4 • Public • Published

minimist-better-ajv-errors-cli

Combines minimist, typebox, ajv and better-ajv-errors for simple command line args validating.

Usage

Add to your project

   yarn add @mauriora/minimist-better-ajv-errors-cli @sinclair/typebox

Declare your schema, validate and either show errors or perform your task:

    import { Static, Type } from '@sinclair/typebox';
    import { ajvConsoleLogger, getArgs, isOptions } from '@mauriora/minimist-better-ajv-errors-cli';

    const ArgsSchema = Type.Object(
        {
            bundle: Type.Optional(Type.Boolean({
                default: true,
                description: 'if set and false then bundle task will be skipped'
            })),
            ship: Type.Optional(Type.Boolean({
                description: 'if not set then a debug version is build'
            })),

            _: Type.Optional(Type.Array(
                Type.String(),
                {
                    maxItems: 0
                }
            )),

            color: Type.Optional(Type.Boolean({ description: 'Ignored' })),
        },
        {
            additionalProperties: false
        }
    );

    type Args = Static<typeof ArgsSchema>;

    const buildPackge = async ({ bundle, ship }: Args): Promise<boolean> => {
    }

    const main = async (): Promise<boolean> => {
        const args: Args = getArgs();

        if (! isOptions(args, ArgsSchema)) {
            ajvConsoleLogger(args, ArgsSchema);
            return false;
        }
        return buildPackge(args);
    };

    main()
        .then(result => {
            if (result) {
                exit(0);
            } else {
                exit(1);
            }
        });

Readme

Keywords

none

Package Sidebar

Install

npm i @mauriora/minimist-better-ajv-errors-cli

Weekly Downloads

0

Version

0.0.4

License

MIT

Unpacked Size

11.9 kB

Total Files

21

Last publish

Collaborators

  • denniskuhn