From 5af33407f03c2b311f6db604707132899ded3cb7 Mon Sep 17 00:00:00 2001 From: Nate Butler Date: Tue, 27 Jun 2023 11:34:26 -0400 Subject: [PATCH] Add script for building theme types --- script/build-theme-types | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 script/build-theme-types diff --git a/script/build-theme-types b/script/build-theme-types new file mode 100755 index 0000000000..b78631f3d1 --- /dev/null +++ b/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)