UNPKG

xrmcli

Version:

A suite of cli tools to support Xrm/D365/Dataverse development

21 lines 867 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const commander_1 = require("commander"); commander_1.program .name('xrmcli') .usage('solution [options] [command]') .command('import', 'Imports a solution.', { executableFile: './solution/importsolution', }) .command('export', 'Exports a solution.', { executableFile: './solution/exportsolution', }) .command('patch', 'Creates a solution patch from a managed or unmanaged solution.', { executableFile: './solution/cloneaspatch', }) .command('clone', 'Creates a new copy of an unmanged solution that contains the original solution plus all of its patches.', { executableFile: './solution/cloneassolution' }) .action(() => { commander_1.program.help(); }); commander_1.program.parseAsync(); //# sourceMappingURL=solution.js.map