salesforce-vscode
Version:
Develop Salesforce/Salesforce1/Force.com applications inside VSCode
301 lines • 9.48 kB
JSON
{
"version": "0.1.0",
"command": "force",
"isShellCommand": true,
"tasks": [
{
"taskName": "login",
"isBuildCommand": false,
"showOutput": "silent"
},
{
"taskName": "logout",
// Make this the default build command.
"isBuildCommand": false,
// Show the output window only if unrecognized errors occur.
"showOutput": "always",
"args": [
"logout", "-u=john.nelson+signixnelsondev@codescience.com"
]
},
{
"taskName": "logins",
// Make this the default build command.
"isBuildCommand": false,
// Show the output window only if unrecognized errors occur.
"showOutput": "always",
// Use the standard less compilation problem matcher.
"problemMatcher": "$lessCompile"
},
{
"taskName": "active",
// Make this the default build command.
"isBuildCommand": false,
// Show the output window only if unrecognized errors occur.
"showOutput": "always",
// Use the standard less compilation problem matcher.
"problemMatcher": "$lessCompile"
},
{
"taskName": "whoami",
// Make this the default build command.
"isBuildCommand": false,
// Show the output window only if unrecognized errors occur.
"showOutput": "always",
// Use the standard less compilation problem matcher.
"problemMatcher": "$lessCompile"
},
{
"taskName": "describe",
// Make this the default build command.
"isBuildCommand": false,
// Show the output window only if unrecognized errors occur.
"showOutput": "always",
// Use the standard less compilation problem matcher.
"problemMatcher": "$lessCompile",
"args": [
"describe","-t","metadata"
]
},
{
"taskName": "list sobjects",
// Make this the default build command.
"isBuildCommand": false,
// Show the output window only if unrecognized errors occur.
"showOutput": "always",
// Use the standard less compilation problem matcher.
"args": [
"sobject", "list"
]
},
{
"taskName": "bigobject",
// Make this the default build command.
"isBuildCommand": false,
// Show the output window only if unrecognized errors occur.
"showOutput": "always",
// Use the standard less compilation problem matcher.
"problemMatcher": "$lessCompile"
},
{
"taskName": "field",
// Make this the default build command.
"isBuildCommand": false,
// Show the output window only if unrecognized errors occur.
"showOutput": "always",
// Use the standard less compilation problem matcher.
"problemMatcher": "$lessCompile"
},
{
"taskName": "record",
// Make this the default build command.
"isBuildCommand": false,
// Show the output window only if unrecognized errors occur.
"showOutput": "always",
// Use the standard less compilation problem matcher.
"problemMatcher": "$lessCompile"
},
{
"taskName": "bulk",
// Make this the default build command.
"isBuildCommand": false,
// Show the output window only if unrecognized errors occur.
"showOutput": "always",
// Use the standard less compilation problem matcher.
"problemMatcher": "$lessCompile"
},
{
"taskName": "fetch pages",
// Make this the default build command.
"isBuildCommand": false,
// Show the output window only if unrecognized errors occur.
"showOutput": "always",
"args": ["fetch","-t","ApexPage"],
// Use the standard less compilation problem matcher.
"problemMatcher": "$lessCompile"
},
{
"taskName": "fetch static resources",
// Make this the default build command.
"isBuildCommand": false,
// Show the output window only if unrecognized errors occur.
"showOutput": "always",
"args": ["fetch","-t","StaticResource"],
// Use the standard less compilation problem matcher.
"problemMatcher": "$lessCompile"
},
{
"taskName": "fetch apex classes",
// Make this the default build command.
"isBuildCommand": false,
// Show the output window only if unrecognized errors occur.
"showOutput": "always",
"args": ["fetch","-t","ApexClass"],
// Use the standard less compilation problem matcher.
"problemMatcher": "$lessCompile"
},
{
"taskName": "fetch triggers",
// Make this the default build command.
"isBuildCommand": false,
// Show the output window only if unrecognized errors occur.
"showOutput": "always",
"args": ["fetch","-t","ApexTrigger"],
// Use the standard less compilation problem matcher.
"problemMatcher": "$lessCompile"
},
{
"taskName": "import",
// Make this the default build command.
"isBuildCommand": false,
// Show the output window only if unrecognized errors occur.
"showOutput": "always",
// Use the standard less compilation problem matcher.
"problemMatcher": "$lessCompile"
},
{
"taskName": "export",
// Make this the default build command.
"isBuildCommand": false,
// Show the output window only if unrecognized errors occur.
"showOutput": "always",
// Use the standard less compilation problem matcher.
"problemMatcher": "$lessCompile"
},
{
"taskName": "query",
// Make this the default build command.
"isBuildCommand": false,
// Show the output window only if unrecognized errors occur.
"showOutput": "always",
// Use the standard less compilation problem matcher.
"problemMatcher": "$lessCompile"
},
{
"taskName": "apex",
// Make this the default build command.
"isBuildCommand": false,
// Show the output window only if unrecognized errors occur.
"showOutput": "always",
// Use the standard less compilation problem matcher.
"problemMatcher": "$lessCompile"
},
{
"taskName": "oauth",
// Make this the default build command.
"isBuildCommand": false,
// Show the output window only if unrecognized errors occur.
"showOutput": "always",
// Use the standard less compilation problem matcher.
"problemMatcher": "$lessCompile"
},
{
"taskName": "test",
// Make this the default build command.
"isBuildCommand": false,
// Show the output window only if unrecognized errors occur.
"showOutput": "always",
// Use the standard less compilation problem matcher.
"problemMatcher": "$lessCompile"
},
{
"taskName": "test this",
"isBuildCommand": false,
"suppressTaskName": true,
"showOutput": "always",
"args": [
"test", "${fileBasenameNoExt}"
]
},
{
"taskName": "security",
// Make this the default build command.
"isBuildCommand": false,
// Show the output window only if unrecognized errors occur.
"showOutput": "always",
// Use the standard less compilation problem matcher.
"problemMatcher": "$lessCompile"
},
{
"taskName": "version",
// Make this the default build command.
"isBuildCommand": false,
// Show the output window only if unrecognized errors occur.
"showOutput": "always",
// Use the standard less compilation problem matcher.
"problemMatcher": "$lessCompile"
},
{
"taskName": "update",
// Make this the default build command.
"isBuildCommand": false,
// Show the output window only if unrecognized errors occur.
"showOutput": "always",
// Use the standard less compilation problem matcher.
"problemMatcher": "$lessCompile"
},
{
"taskName": "push current file",
"isBuildCommand": false,
"showOutput": "always",
"args": ["push","-f","${file}"],
"suppressTaskName": true
// mv ./src ./metadata && force push -f ./metadata/classes/MyDoxCTRL.cls && mv ./metadata ./src
},
{
"taskName": "aura",
// Make this the default build command.
"isBuildCommand": false,
// Show the output window only if unrecognized errors occur.
"showOutput": "always",
// Use the standard less compilation problem matcher.
"problemMatcher": "$lessCompile"
},
{
"taskName": "password",
// Make this the default build command.
"isBuildCommand": false,
// Show the output window only if unrecognized errors occur.
"showOutput": "always",
// Use the standard less compilation problem matcher.
"problemMatcher": "$lessCompile"
},
{
"taskName": "notify",
// Make this the default build command.
"isBuildCommand": false,
// Show the output window only if unrecognized errors occur.
"showOutput": "always",
// Use the standard less compilation problem matcher.
"problemMatcher": "$lessCompile"
},
{
"taskName": "limits",
// Make this the default build command.
"isBuildCommand": false,
// Show the output window only if unrecognized errors occur.
"showOutput": "always",
// Use the standard less compilation problem matcher.
"problemMatcher": "$lessCompile"
},
{
"taskName": "help",
// Make this the default build command.
"isBuildCommand": false,
// Show the output window only if unrecognized errors occur.
"showOutput": "always",
"args": [
"help"
]
},
{
"taskName": "datapipe",
// Make this the default build command.
"isBuildCommand": false,
// Show the output window only if unrecognized errors occur.
"showOutput": "always",
// Use the standard less compilation problem matcher.
"problemMatcher": "$lessCompile"
}
]
}