Skip to content

Commit 6f88dc9

Browse files
committed
chore(vscode): add debug and run tasks for Jekyll development
1 parent b84f011 commit 6f88dc9

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

.vscode/launch.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "Debug Jekyll",
6+
"type": "pwa-chrome",
7+
"request": "launch",
8+
"url": "http://127.0.0.1:4000",
9+
"webRoot": "${workspaceFolder}",
10+
"preLaunchTask": "Run Jekyll"
11+
}
12+
]
13+
}

.vscode/tasks.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "Run Jekyll",
6+
"type": "shell",
7+
"command": "mise exec -- bundle exec jekyll serve",
8+
"isBackground": true,
9+
"problemMatcher": []
10+
}
11+
]
12+
}

0 commit comments

Comments
 (0)