mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
1537500fcb
We're going full monorepo. Co-Authored-By: Max Brunsfeld <maxbrunsfeld@gmail.com>
11 lines
253 B
Bash
Executable File
11 lines
253 B
Bash
Executable File
#!/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
|