mirror of
https://github.com/DerTyp7/better-teamspeak-theme.git
synced 2025-10-28 12:22:13 +01:00
12 lines
293 B
Bash
12 lines
293 B
Bash
#!/bin/sh
|
|
# 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
|