Created
December 14, 2016 09:41
-
-
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".
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// 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