Finish dark.ts initial port and restructure files to get ready for build script

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>
This commit is contained in:
Keith Simmons
2022-04-04 12:13:59 -07:00
co-authored by Nate Butler
parent f11e0aeda9
commit bfeb6abb4b
15 changed files with 396 additions and 128 deletions
+11
View File
@@ -0,0 +1,11 @@
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
}