Skip to content

Commit 1a64db3

Browse files
committed
fix: code review
1 parent 5573b4c commit 1a64db3

File tree

2 files changed

+2
-11
lines changed
  • packages
    • astro/src/default/utils
    • template/src/content/tutorial/1-basics/1-introduction/1-welcome

2 files changed

+2
-11
lines changed

packages/astro/src/default/utils/content.ts

+1-10
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ export async function getTutorial(): Promise<Tutorial> {
272272
continue;
273273
}
274274

275-
if (micromatch.isMatch(filename, lesson.data.template.visibleFiles, { format: formatTemplateFile })) {
275+
if (micromatch.isMatch(filename, lesson.data.template.visibleFiles, { basename: true })) {
276276
lesson.files[1].push(filename);
277277
}
278278
}
@@ -366,15 +366,6 @@ async function getFilesRefList(pathToFolder: string, base = CONTENT_DIR): Promis
366366
return [filesRef, filePaths];
367367
}
368368

369-
function formatTemplateFile(filename: string) {
370-
// compare files without leading "/" so that patterns like ["src/index.js"] match "/src/index.js"
371-
if (filename.startsWith('/')) {
372-
return filename.substring(1);
373-
}
374-
375-
return filename;
376-
}
377-
378369
interface CollectionEntryTutorial {
379370
id: string;
380371
slug: string;

packages/template/src/content/tutorial/1-basics/1-introduction/1-welcome/content.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ terminal:
1313
panels: ['terminal', 'output']
1414
template:
1515
name: default
16-
visibleFiles: ['src/template-only-file.js']
16+
visibleFiles: ['template-only-file.js']
1717
---
1818

1919
# Kitchen Sink [Heading 1]

0 commit comments

Comments
 (0)