20 lines
442 B
Bash
Executable file
20 lines
442 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
source ./scripts/common.sh
|
|
|
|
sass-lint -vqc .sass-lint.yml
|
|
eslint $STATIC_SRC/js
|
|
yamllint data/*.yml
|
|
yamllint config.yml
|
|
mdspell --en-gb -ranx 'content/**/*.md'
|
|
|
|
blcl -ro ./public/ \
|
|
--exclude "open.spotify.com"\
|
|
--exclude "p.scdn.co"\
|
|
--exclude "html5up.net"\
|
|
--exclude "staticflickr.com"\
|
|
--exclude "twitter.com/intent"\
|
|
--exclude "facebook.com/sharer"\
|
|
--exclude "reddit.com/submit"
|