Include contents of the zed-server repo
We're going full monorepo. Co-Authored-By: Max Brunsfeld <maxbrunsfeld@gmail.com>
This commit is contained in:
parent
34abda3a04
commit
1537500fcb
99 changed files with 7206 additions and 75 deletions
10
script/build-css
Executable file
10
script/build-css
Executable file
|
@ -0,0 +1,10 @@
|
|||
#!/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
|
Loading…
Add table
Add a link
Reference in a new issue