mirror of
https://github.com/DerTyp7/better-teamspeak-theme.git
synced 2025-10-28 20:32:17 +01:00
14 lines
327 B
Bash
14 lines
327 B
Bash
#!/bin/sh
|
|
npm install node-sass --save-dev
|
|
|
|
# Remove old dist folder
|
|
rm -rf ./dist
|
|
|
|
# Create new dist folder
|
|
mkdir ./dist
|
|
|
|
# Move other files to dist folder
|
|
find ./src -type f ! -name "*.scss" -exec cp {} ./dist/ \;
|
|
|
|
npx node-sass --output-style compressed --source-map-contents true --precision 6 --output ./dist ./src/*.scss
|