mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-27 19:02:07 +00:00
17 lines
579 B
TypeScript
17 lines
579 B
TypeScript
import * as fs from "fs";
|
|
import * as path from "path";
|
|
import app from "./styleTree/app";
|
|
import dark from "./themes/dark";
|
|
import light from "./themes/light";
|
|
import decamelizeTree from "./utils/decamelizeTree";
|
|
|
|
const themes = [dark, light];
|
|
for (let theme of themes) {
|
|
let styleTree = decamelizeTree(app(theme));
|
|
let styleTreeJSON = JSON.stringify(styleTree, null, 2);
|
|
let outPath = path.resolve(
|
|
`${__dirname}/../crates/zed/assets/themes/${theme.name}.json`
|
|
);
|
|
fs.writeFileSync(outPath, styleTreeJSON);
|
|
console.log(`Generated ${outPath}`);
|
|
}
|