Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | 2x 2x 2x | import {ArgumentConfig, ParseOptions} from 'ts-command-line-args';
import {IFEnvArgs} from '../types/process-args';
import {STRINGS} from '../../common/config';
const {DISCLAIMER_MESSAGE} = STRINGS;
export const CONFIG = {
IF_ENV: {
ARGS: {
manifest: {
type: String,
optional: true,
alias: 'm',
description: '[path to the manifest file]',
},
install: {
type: Boolean,
optional: true,
alias: 'i',
description: '[command to install package.json]',
},
cwd: {
type: Boolean,
optional: true,
alias: 'c',
description:
'[command to generate the package.json in the command working directory]',
},
} as ArgumentConfig<IFEnvArgs>,
HELP: {
helpArg: 'help',
headerContentSections: [
{header: 'Impact Framework', content: 'IF-Env Helpful keywords:'},
],
footerContentSections: [
{header: 'Green Software Foundation', content: DISCLAIMER_MESSAGE},
],
} as ParseOptions<any>,
},
};
|