Skip to content

Instantly share code, notes, and snippets.

@joaocarmo
Last active January 10, 2020 10:26
Show Gist options
  • Save joaocarmo/3ef4f05e1184e1810e356f8caae9445d to your computer and use it in GitHub Desktop.
Save joaocarmo/3ef4f05e1184e1810e356f8caae9445d to your computer and use it in GitHub Desktop.
VSCode Custom Task: Preview as HTML in Chrome
{
"version": "2.0.0",
"tasks": [
{
"label": "Preview as HTML in Chrome",
"type": "shell",
"osx": {
"command": "cp ${file} /tmp/${fileBasename}_preview.html && /Applications/Google\\ Chrome.app/Contents/MacOS/Google\\ Chrome /tmp/${fileBasename}_preview.html && sleep 5 && rm -f /tmp/${fileBasename}_preview.html",
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment