10 lines
208 B
Bash
Executable file
10 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)
|