diff --git a/src/node/init/init.ts b/src/node/init/init.ts index a1ec8b5ca81c..6e5ae608c892 100644 --- a/src/node/init/init.ts +++ b/src/node/init/init.ts @@ -21,6 +21,7 @@ export enum ScaffoldThemeType { export interface ScaffoldOptions { root: string + srcDir: string title?: string description?: string theme: ScaffoldThemeType @@ -50,6 +51,13 @@ export async function init(root: string | undefined) { }) }, + srcDir: async () => { + return text({ + message: 'Where should VitePress look for your markdown files?', + initialValue: './' + }) + }, + title: () => text({ message: 'Site title:', @@ -108,6 +116,7 @@ export async function init(root: string | undefined) { export function scaffold({ root = './', + srcDir = './', title = 'My Awesome Project', description = 'A VitePress Site', theme, @@ -115,12 +124,14 @@ export function scaffold({ injectNpmScripts }: ScaffoldOptions): string { const resolvedRoot = path.resolve(root) + const resolvedSrcDir = path.resolve(root, srcDir) const templateDir = path.resolve( path.dirname(fileURLToPath(import.meta.url)), '../../template' ) const data = { + srcDir: srcDir === './' ? undefined : JSON.stringify(srcDir), // omit if default title: JSON.stringify(title), description: JSON.stringify(description), useTs, @@ -139,14 +150,20 @@ export function scaffold({ const renderFile = (file: string) => { const filePath = path.resolve(templateDir, file) let targetPath = path.resolve(resolvedRoot, file) + if (useMjs && file === '.vitepress/config.js') { targetPath = targetPath.replace(/\.js$/, '.mjs') } if (useTs) { targetPath = targetPath.replace(/\.(m?)js$/, '.$1ts') } - const src = fs.readFileSync(filePath, 'utf-8') - const compiled = template(src)(data) + if (file.endsWith('.md')) { + targetPath = path.resolve(resolvedSrcDir, file) + } + + const content = fs.readFileSync(filePath, 'utf-8') + const compiled = template(content)(data) + fs.outputFileSync(targetPath, compiled) } diff --git a/template/.vitepress/config.js b/template/.vitepress/config.js index cf26cc238b02..33711d0bcf6c 100644 --- a/template/.vitepress/config.js +++ b/template/.vitepress/config.js @@ -1,7 +1,9 @@ import { defineConfig } from 'vitepress' // https://vitepress.dev/reference/site-config -export default defineConfig({ +export default defineConfig({<% if (srcDir) { %> + srcDir: <%= srcDir %>, + <% } %> title: <%= title %>, description: <%= description %><% if (defaultTheme) { %>, themeConfig: {