Created
December 18, 2021 02:10
-
-
Save pirafrank/72326c018307c6b3fa4f2d3f703ee2b3 to your computer and use it in GitHub Desktop.
VS Code tasks config for Jekyll
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
{ | |
// 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