mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-01 07:35:57 +09:00
59046d583d
* refactor(locales): use es module * fix sw build * fix gulp * try fixing storybook * Revert "try fixing storybook" This reverts commit 5f2a4eee016776381a7d80407e28d129c252228f. * try fixing storybook 2 * Update main.ts * Update build.js * Update main.ts * Update changes.ts * fix sw lint * Update build.js
39 lines
731 B
TypeScript
39 lines
731 B
TypeScript
import { readFile, writeFile } from 'node:fs/promises';
|
|
import JSON5 from 'json5';
|
|
|
|
const keys = [
|
|
'_dark',
|
|
'_light',
|
|
'l-light',
|
|
'l-coffee',
|
|
'l-apricot',
|
|
'l-rainy',
|
|
'l-botanical',
|
|
'l-vivid',
|
|
'l-cherry',
|
|
'l-sushi',
|
|
'l-u0',
|
|
'd-dark',
|
|
'd-persimmon',
|
|
'd-astro',
|
|
'd-future',
|
|
'd-botanical',
|
|
'd-green-lime',
|
|
'd-green-orange',
|
|
'd-cherry',
|
|
'd-ice',
|
|
'd-u0',
|
|
]
|
|
|
|
await Promise.all(keys.map((key) => readFile(new URL(`../src/themes/${key}.json5`, import.meta.url), 'utf8'))).then((sources) => {
|
|
writeFile(
|
|
new URL('./themes.ts', import.meta.url),
|
|
`export default ${JSON.stringify(
|
|
Object.fromEntries(sources.map((source, i) => [keys[i], JSON5.parse(source)])),
|
|
undefined,
|
|
2,
|
|
)} as const;`,
|
|
'utf8'
|
|
);
|
|
});
|