summaryrefslogtreecommitdiffstats
path: root/watch.sh
diff options
context:
space:
mode:
authorVolpeon <git@volpeon.ink>2020-12-21 19:57:20 +0100
committerVolpeon <git@volpeon.ink>2020-12-21 19:57:20 +0100
commitc348cc8cc76306c3d3e533888b3d30ea7566e075 (patch)
tree943f0894ea82ad7543cb3aa7cabafb0235ba6486 /watch.sh
parentAdded HTML (diff)
downloadvolpeon.ink-c348cc8cc76306c3d3e533888b3d30ea7566e075.tar.gz
volpeon.ink-c348cc8cc76306c3d3e533888b3d30ea7566e075.tar.bz2
volpeon.ink-c348cc8cc76306c3d3e533888b3d30ea7566e075.zip
Use Pandoc to write content in Markdown
Diffstat (limited to 'watch.sh')
-rwxr-xr-xwatch.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/watch.sh b/watch.sh
index 74e6542..0aceb1c 100755
--- a/watch.sh
+++ b/watch.sh
@@ -1,5 +1,6 @@
1#!/bin/bash 1#!/bin/bash
2 2
3while inotifywait -r -e close_write src; do 3while inotifywait -r -e close_write assets; do
4 sassc --style expanded src/style.scss dist/style.css 4 sassc assets/style.scss dist/style.css
5 node_modules/.bin/postcss dist/style.css -r
5done 6done