1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
theorangeone.net-legacy/scripts/build-scss.sh

14 lines
342 B
Bash
Raw Normal View History

2016-05-14 12:27:05 +01:00
#!/usr/bin/env bash
set -e
mkdir -p theme/static/src/scss/css
# scss can't import css, so copy them into src dir and change the extension!
cp node_modules/animate.css/animate.css theme/static/src/scss/css/animate.scss
node-sass theme/static/src/scss/index.scss theme/static/build/css/index.css
# Cleanup
rm -rf theme/static/src/scss/css