🧹Remove old implementation

This commit is contained in:
ful1e5 2020-09-28 18:04:58 +05:30
parent 7d7d419806
commit b8e8e32330

View file

@ -1,16 +1,11 @@
// import { renderCursors } from "./render"; import { ThemeColors } from "./types";
import { generateConfigs, GenerateConfigsArgs } from "./schema";
import { renderCursors } from "./render";
const createBitmaps = async ({ const createBitmaps = async (config: {
pathConfig, themeColors: ThemeColors;
colorSchemes, themeName: string;
themeName bitmapsDir: string;
}: GenerateConfigsArgs) => { }) => {
const configs = generateConfigs({ pathConfig, colorSchemes, themeName }); console.log(config);
await renderCursors(configs);
process.exit(0);
}; };
export { createBitmaps }; export { createBitmaps };