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 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | 33x 33x 33x | import {ArgumentConfig, ParseOptions} from 'ts-command-line-args';
import {STRINGS} from '../../common/config';
import {IfRunArgs} from '../types/process-args';
const {DISCLAIMER_MESSAGE} = STRINGS;
export const CONFIG = {
IF_RUN: {
ARGS: {
manifest: {
type: String,
optional: true,
alias: 'm',
description: '[path to the input file]',
},
output: {
type: String,
optional: true,
alias: 'o',
description: '[path to the output file]',
},
'override-params': {
type: String,
optional: true,
alias: 'p',
description: '[path to a parameter file that overrides our defaults]',
},
stdout: {
type: Boolean,
optional: true,
alias: 's',
description: '[prints out to the console]',
},
help: {
type: Boolean,
optional: true,
alias: 'h',
description: '[prints out the above help instruction]',
},
debug: {
type: Boolean,
optional: true,
alias: 'd',
description: '[prints out debug logs to the console]',
},
} as ArgumentConfig<IfRunArgs>,
HELP: {
helpArg: 'help',
headerContentSections: [
{header: 'Impact Framework', content: 'Helpful keywords:'},
],
footerContentSections: [
{header: 'Green Software Foundation', content: DISCLAIMER_MESSAGE},
],
} as ParseOptions<any>,
},
GITHUB_PATH: 'https://github.com',
NATIVE_PLUGIN: 'if-plugins',
AGGREGATION_ADDITIONAL_PARAMS: ['timestamp', 'duration'],
};
|