You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
611 B
TypeScript
15 lines
611 B
TypeScript
import { globSync } from 'glob';
|
|
import { resolve } from 'node:path';
|
|
|
|
export const WIKI_URL = 'https://github.com/lobehub/lobe-chat/wiki/';
|
|
export const ROOT = resolve(__dirname, '../..');
|
|
export const DOCS_DIR = resolve(ROOT, 'contributing');
|
|
export const HOME_PATH = resolve(DOCS_DIR, 'Home.md');
|
|
export const SIDEBAR_PATH = resolve(DOCS_DIR, '_Sidebar.md');
|
|
export const docsFiles = globSync(resolve(DOCS_DIR, '**/*.md').replaceAll('\\', '/'), {
|
|
ignore: ['Home.md', '_Sidebar.md', '_Footer.md'],
|
|
nodir: true,
|
|
}).filter((file) => !file.includes('.zh-CN.md'));
|
|
|
|
export const SPLIT = '<!-- DOCS LIST -->';
|