mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-04 23:31:57 +00:00
bfeb6abb4b
Build script currently fails to type check. Not sure whats going on. Will fix in the morning. Co-authored-by: Nate Butler <nate@zed.dev>
11 lines
No EOL
320 B
TypeScript
11 lines
No EOL
320 B
TypeScript
import dark from "./themes/dark";
|
|
import light from "./themes/light";
|
|
import app from "./styleTree/app";
|
|
|
|
for (let theme of [dark, light]) {
|
|
let styleTree = app(theme);
|
|
|
|
let styleTreeJson = JSON.stringify(styleTree);
|
|
console.log(styleTreeJson);
|
|
// TODO: Write style tree json to zed crate assets folder
|
|
} |