Skip to content

Instantly share code, notes, and snippets.

@tomconte
Created December 14, 2016 09:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save tomconte/db2944db007abb419ffa2450d284c0b9 to your computer and use it in GitHub Desktop.
Save tomconte/db2944db007abb419ffa2450d284c0b9 to your computer and use it in GitHub Desktop.
Truffle tasks for Visual Studio Code. You can then use them to interact with Truffle, e.g. CTRL-P then "task migrate".
{
// Truffle tasks for Visual Studio Code
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "0.1.0",
"command": "truffle",
"isShellCommand": true,
"args": [],
"showOutput": "always",
"echoCommand": true,
"tasks": [
{
"taskName": "compile"
},
{
"taskName": "build"
},
{
"taskName": "migrate"
},
{
"taskName": "console"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment