feat: add about page

This commit is contained in:
vben
2024-06-23 20:05:22 +08:00
parent d4f61c283f
commit 199d5506ac
28 changed files with 394 additions and 18 deletions

View File

@@ -5,6 +5,8 @@ import utc from 'dayjs/plugin/utc';
dayjs.extend(utc);
dayjs.extend(timezone);
const dateUtil = dayjs().tz('Asia/Shanghai');
dayjs.tz.setDefault('Asia/Shanghai');
const dateUtil = dayjs;
export { dateUtil };

View File

@@ -9,6 +9,6 @@ export { prettierFormat } from './prettier';
export type { Package } from '@manypkg/get-packages';
export { consola } from 'consola';
export { nanoid } from 'nanoid';
export { readPackageJSON } from 'pkg-types';
export { type PackageJson, readPackageJSON } from 'pkg-types';
export { rimraf } from 'rimraf';
export { $, chalk as colors, fs, spinner } from 'zx';