You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
290 B
8 lines
290 B
#!/bin/bash
|
|
set -e
|
|
|
|
echo "Running Less to compile site CSS (dark theme)"
|
|
pnpm lessc src/client/less/newsroom-dark.less dist/client/css/newsroom-dark.css
|
|
|
|
echo "Running Less to compile site CSS (light theme)"
|
|
pnpm lessc src/client/less/newsroom-light.less dist/client/css/newsroom-light.css
|
|
|