|
|
|
@ -91,6 +91,11 @@ const details = (): IpluginDetails => ({
|
|
|
|
defaultValue: 'true',
|
|
|
|
defaultValue: 'true',
|
|
|
|
inputUI: {
|
|
|
|
inputUI: {
|
|
|
|
type: 'switch',
|
|
|
|
type: 'switch',
|
|
|
|
|
|
|
|
onSelect: {
|
|
|
|
|
|
|
|
false: {
|
|
|
|
|
|
|
|
outputFileBecomesWorkingFile: 'false',
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
tooltip:
|
|
|
|
tooltip:
|
|
|
|
'Toggle this on if the command creates an output file.',
|
|
|
|
'Toggle this on if the command creates an output file.',
|
|
|
|
@ -199,6 +204,7 @@ const plugin = async (args: IpluginInputArgs): Promise<IpluginOutputArgs> => {
|
|
|
|
const {
|
|
|
|
const {
|
|
|
|
outputFileBecomesWorkingFile,
|
|
|
|
outputFileBecomesWorkingFile,
|
|
|
|
} = args.inputs;
|
|
|
|
} = args.inputs;
|
|
|
|
|
|
|
|
|
|
|
|
let userOutputFilePath = String(args.inputs.userOutputFilePath);
|
|
|
|
let userOutputFilePath = String(args.inputs.userOutputFilePath);
|
|
|
|
let cliArguments = String(args.inputs.cliArguments);
|
|
|
|
let cliArguments = String(args.inputs.cliArguments);
|
|
|
|
|
|
|
|
|
|
|
|
|