Initial commit

This commit is contained in:
Marcelo
2025-11-20 15:27:34 -06:00
commit cc72c9fc5d
3221 changed files with 737477 additions and 0 deletions

28
node_modules/cliss/test/specs/cliss-options/specs.js generated vendored Normal file
View File

@@ -0,0 +1,28 @@
'use strict';
const tests = [{
description: 'options.validateRequiredParameters = true',
input: '--param2=A',
output: `
Usage:
$ main <options>
$ main [command]
Options:
--param1 Required - param1 description
--param2
Commands:
nested1
nested2
`
}, {
description: `command.subcommandsDelimiter = '-' + options.pipe.before + command.pipe.after`,
input: 'nested1-nested1.1 --param1=A',
output: `nested1-nested1.1:aoptionsPipecommandPipe`
}];
module.exports = tests;