mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
11 lines
253 B
Plaintext
11 lines
253 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
cd ./script
|
||
|
[ -d node_modules ] || npm install
|
||
|
if [[ $1 == --release ]]; then
|
||
|
export NODE_ENV=production # Purge unused styles in --release mode
|
||
|
fi
|
||
|
npx tailwindcss build ../server/styles.css --output ../server/static/styles.css
|