mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
11 lines
208 B
Bash
Executable File
11 lines
208 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "running xtask"
|
|
(cd crates/theme && cargo xtask build-theme-types)
|
|
|
|
echo "updating theme packages"
|
|
(cd styles && npm install)
|
|
|
|
echo "building theme types"
|
|
(cd styles && npm run build-types)
|