forked from abetterinternet/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
css-build.sh
39 lines (29 loc) · 1.14 KB
/
css-build.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/bin/bash
# This script uses node-sass and gulp
# npm install -g node-sass gulp gulp-cli
# Store the theme package filename
theme_filename='purpose-website-ui-kit-v2.0.1'
# Save current directory
site_dir=$(pwd)
# Clean up the tmp directory where we'll work
rm -Rf /tmp/${theme_filename}
rm -Rf /tmp/__MACOSX
# Unzip purpose theme to tmp directory
unzip ~/Downloads/${theme_filename}.zip -d /tmp/
# Copy custom CSS to build directory
rm /tmp/${theme_filename}/resources/scss/custom/_styles.scss
rm /tmp/${theme_filename}/resources/scss/custom/_variables.scss
cp ./src/purpose-user-css/_styles.scss /tmp/${theme_filename}/resources/scss/custom/
cp ./src/purpose-user-css/_variables.scss /tmp/${theme_filename}/resources/scss/custom/
# Build theme files
cd /tmp/${theme_filename}/
npm install
gulp build
# Remove the old css
rm ${site_dir}/static/purpose-theme/css/theme.css
rm ${site_dir}/static/purpose-theme/css/theme.min.css
# Copy over build results
cp ./assets/css/purpose.css ${site_dir}/static/purpose-theme/css/theme.css
cp ./assets/css/purpose.min.css ${site_dir}/static/purpose-theme/css/theme.min.css
# Clean up
rm -Rf /tmp/${theme_filename}