buildStyleTree.ts

 1import dark from "./themes/dark";
 2import light from "./themes/light";
 3import app from "./styleTree/app";
 4
 5for (let theme of [dark, light]) {
 6    let styleTree = app(theme);
 7
 8    let styleTreeJson = JSON.stringify(styleTree);
 9    console.log(styleTreeJson);
10    // TODO: Write style tree json to zed crate assets folder
11}