v3mt
Version:
A CLI toolkit for managing and deploying Victoria 3 mods, including sending mod files to the game, launching the game, and more.
45 lines (44 loc) • 973 B
JavaScript
export const vsc_tasks = [
{
label: 'Send to Game',
type: 'shell',
command: 'v3mt send-to-game',
group: 'build',
problemMatcher: [],
},
{
label: 'Launch Game',
type: 'shell',
command: 'v3mt launch-game',
group: 'build',
problemMatcher: [],
},
{
label: 'Open Error Log',
type: 'shell',
command: 'v3mt open-error-log',
group: 'build',
problemMatcher: [],
},
{
label: 'Open Game Folder',
type: 'shell',
command: 'v3mt open-game-folder',
group: 'build',
problemMatcher: [],
},
{
label: 'Open Mod Folder',
type: 'shell',
command: 'v3mt open-mod-folder',
group: 'build',
problemMatcher: [],
},
];
export const vsc_presentation = {
echo: true,
reveal: 'always',
focus: false,
panel: 'shared',
showReuseMessage: true,
};