Skip to content

Instantly share code, notes, and snippets.

@pirafrank
Created December 18, 2021 02:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pirafrank/72326c018307c6b3fa4f2d3f703ee2b3 to your computer and use it in GitHub Desktop.
Save pirafrank/72326c018307c6b3fa4f2d3f703ee2b3 to your computer and use it in GitHub Desktop.
VS Code tasks config for Jekyll
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Serve",
"type": "shell",
"command": "bundle exec jekyll s",
"problemMatcher": []
},
{
"label": "Serve drafts",
"type": "shell",
"command": "bundle exec jekyll s --drafts",
"problemMatcher": []
},
{
"label": "Serve future",
"type": "shell",
"command": "bundle exec jekyll s --future",
"problemMatcher": []
},
{
"label": "Serve drafts and future",
"type": "shell",
"command": "bundle exec jekyll s --drafts --future",
"problemMatcher": []
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment