@@ -21,7 +21,6 @@ export enum ScaffoldThemeType {
21
21
22
22
export interface ScaffoldOptions {
23
23
root : string
24
- srcDir : string
25
24
title ?: string
26
25
description ?: string
27
26
theme : ScaffoldThemeType
@@ -54,13 +53,6 @@ export async function init(root: string | undefined) {
54
53
} )
55
54
} ,
56
55
57
- srcDir : async ( ) => {
58
- return text ( {
59
- message : 'Where should VitePress look for your markdown files?' ,
60
- initialValue : './'
61
- } )
62
- } ,
63
-
64
56
title : ( ) =>
65
57
text ( {
66
58
message : 'Site title:' ,
@@ -137,7 +129,6 @@ export async function init(root: string | undefined) {
137
129
138
130
export function scaffold ( {
139
131
root = './' ,
140
- srcDir = './' ,
141
132
title = 'My Awesome Project' ,
142
133
description = 'A VitePress Site' ,
143
134
theme,
@@ -147,14 +138,12 @@ export function scaffold({
147
138
npmScriptsPrefix = 'docs'
148
139
} : ScaffoldOptions ) : string {
149
140
const resolvedRoot = path . resolve ( root )
150
- const resolvedSrcDir = path . resolve ( root , srcDir )
151
141
const templateDir = path . resolve (
152
142
path . dirname ( fileURLToPath ( import . meta. url ) ) ,
153
143
'../../template'
154
144
)
155
145
156
146
const data = {
157
- srcDir : srcDir === './' ? undefined : JSON . stringify ( srcDir ) , // omit if default
158
147
title : JSON . stringify ( title ) ,
159
148
description : JSON . stringify ( description ) ,
160
149
useTs,
@@ -173,20 +162,14 @@ export function scaffold({
173
162
const renderFile = ( file : string ) => {
174
163
const filePath = path . resolve ( templateDir , file )
175
164
let targetPath = path . resolve ( resolvedRoot , file )
176
-
177
165
if ( useMjs && file === '.vitepress/config.js' ) {
178
166
targetPath = targetPath . replace ( / \. j s $ / , '.mjs' )
179
167
}
180
168
if ( useTs ) {
181
169
targetPath = targetPath . replace ( / \. ( m ? ) j s $ / , '.$1ts' )
182
170
}
183
- if ( file . endsWith ( '.md' ) ) {
184
- targetPath = path . resolve ( resolvedSrcDir , file )
185
- }
186
-
187
- const content = fs . readFileSync ( filePath , 'utf-8' )
188
- const compiled = template ( content ) ( data )
189
-
171
+ const src = fs . readFileSync ( filePath , 'utf-8' )
172
+ const compiled = template ( src ) ( data )
190
173
fs . outputFileSync ( targetPath , compiled )
191
174
}
192
175
0 commit comments