File tree 2 files changed +2
-11
lines changed
template/src/content/tutorial/1-basics/1-introduction/1-welcome
2 files changed +2
-11
lines changed Original file line number Diff line number Diff line change @@ -264,7 +264,7 @@ export async function getTutorial(): Promise<Tutorial> {
264
264
continue ;
265
265
}
266
266
267
- if ( micromatch . isMatch ( filename , lesson . data . template . visibleFiles , { format : formatTemplateFile } ) ) {
267
+ if ( micromatch . isMatch ( filename , lesson . data . template . visibleFiles , { basename : true } ) ) {
268
268
lesson . files [ 1 ] . push ( filename ) ;
269
269
}
270
270
}
@@ -340,15 +340,6 @@ function getSlug(entry: CollectionEntryTutorial) {
340
340
return slug ;
341
341
}
342
342
343
- function formatTemplateFile ( filename : string ) {
344
- // compare files without leading "/" so that patterns like ["src/index.js"] match "/src/index.js"
345
- if ( filename . startsWith ( '/' ) ) {
346
- return filename . substring ( 1 ) ;
347
- }
348
-
349
- return filename ;
350
- }
351
-
352
343
interface CollectionEntryTutorial {
353
344
id : string ;
354
345
slug : string ;
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ terminal:
13
13
panels : ['terminal', 'output']
14
14
template :
15
15
name : default
16
- visibleFiles : ['src/ template-only-file.js']
16
+ visibleFiles : ['template-only-file.js']
17
17
---
18
18
19
19
# Kitchen Sink [ Heading 1]
You can’t perform that action at this time.
0 commit comments