Skip to content

Commit 1c2d8cd

Browse files
committed
fix prepare script
1 parent a5c32f6 commit 1c2d8cd

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

scripts/prepare-examples.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { globby } from 'globby'
77
const __dirname = path.dirname(fileURLToPath(import.meta.url))
88
const PROJECT_ROOT = path.resolve(__dirname, '..')
99
const EXAMPLES_SRC = path.join(PROJECT_ROOT, 'examples')
10-
const EXAMPLES_DEST = path.join(PROJECT_ROOT, 'app/.cache/examples')
10+
const EXAMPLES_DEST = path.join(PROJECT_ROOT, 'app/code/examples')
1111

1212
// File extensions we want to include
1313
const ALLOWED_EXTENSIONS = new Set(['.ts', '.tsx', '.js', '.jsx', '.vue', '.svelte', '.md'])
@@ -17,7 +17,7 @@ async function findExampleFiles() {
1717
const files = await globby([
1818
'**/*.{ts,tsx,js,jsx,vue,svelte,md}',
1919
'!node_modules/**',
20-
'!**/.cache/**',
20+
'!**/code/**',
2121
'!.nuxt/**',
2222
'!dist/**'
2323
], {

0 commit comments

Comments
 (0)