Skip to content

Instantly share code, notes, and snippets.

@KevinTCoughlin
Created July 4, 2017 03:51
Show Gist options
  • Save KevinTCoughlin/9c433474596c2a1582bc4130d5f3f7cf to your computer and use it in GitHub Desktop.
Save KevinTCoughlin/9c433474596c2a1582bc4130d5f3f7cf to your computer and use it in GitHub Desktop.
VSCode tasks.json for jekyll development
{
"version": "0.1.0",
"command": "bundle",
"isShellCommand": true,
"args": ["exec", "jekyll"],
"showOutput": "always",
"echoCommand": true,
"suppressTaskName": true,
"tasks": [
{
"taskName": "build",
"args": ["build", "--incremental"]
},
{
"taskName": "serve",
"args": ["serve", "--incremental"]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment