We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a60f06 commit ce1aa06Copy full SHA for ce1aa06
packages/create-app/build.mjs
@@ -19,7 +19,7 @@ const needCopyFiles = {
19
20
async function main() {
21
if (shouldCreatePagesDict())
22
- await fs.ensureDir(__pagesDir)
+ await fs.mkdir(__pagesDir, { recursive: true })
23
24
await Promise.all(
25
Object.keys(needCopyFiles).map(async (relativeTargetPath) => {
packages/create-app/package.json
@@ -16,6 +16,10 @@
16
"bin": {
17
"create-slidev": "index.mjs"
18
},
+ "files": [
+ "index.mjs",
+ "template"
+ ],
"engines": {
"node": ">=18.0.0"
0 commit comments