UNPKG

nx-helper-cli

Version:

This is a helper cli which helps get things done fast in a monorepo. mainly it's used with [nx.dev](http://google.com) tool but has many tools that may benefit anybody working in a monorepo architecture.

16 lines 350 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isHelp = (args) => { if (args.help) return true; return false; }; exports.getCommandType = (args) => { if (args.help) { return 'help'; } if (args.config) { return 'config'; } }; //# sourceMappingURL=argsHelpers.js.map