Add script for building theme types

Nate Butler created

Change summary

script/build-theme-types | 10 ++++++++++
1 file changed, 10 insertions(+)

Detailed changes

script/build-theme-types 🔗

@@ -0,0 +1,10 @@
+#!/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)