@@ -123,7 +123,9 @@ export function moduleListContains(
123
123
moduleList : string [ ] | undefined ,
124
124
id : string ,
125
125
) : boolean | undefined {
126
- return moduleList ?. some ( ( m ) => m === id || id . startsWith ( m + '/' ) )
126
+ return moduleList ?. some (
127
+ ( m ) => m === id || id . startsWith ( withTrailingSlash ( m ) ) ,
128
+ )
127
129
}
128
130
129
131
export function isOptimizable (
@@ -221,6 +223,13 @@ export function fsPathFromUrl(url: string): string {
221
223
return fsPathFromId ( cleanUrl ( url ) )
222
224
}
223
225
226
+ export function withTrailingSlash ( path : string ) : string {
227
+ if ( path [ path . length - 1 ] !== '/' ) {
228
+ return `${ path } /`
229
+ }
230
+ return path
231
+ }
232
+
224
233
/**
225
234
* Check if dir is a parent of file
226
235
*
@@ -231,9 +240,7 @@ export function fsPathFromUrl(url: string): string {
231
240
* @returns true if dir is a parent of file
232
241
*/
233
242
export function isParentDirectory ( dir : string , file : string ) : boolean {
234
- if ( dir [ dir . length - 1 ] !== '/' ) {
235
- dir = `${ dir } /`
236
- }
243
+ dir = withTrailingSlash ( dir )
237
244
return (
238
245
file . startsWith ( dir ) ||
239
246
( isCaseInsensitiveFS && file . toLowerCase ( ) . startsWith ( dir . toLowerCase ( ) ) )
@@ -644,7 +651,7 @@ export function ensureWatchedFile(
644
651
if (
645
652
file &&
646
653
// only need to watch if out of root
647
- ! file . startsWith ( root + '/' ) &&
654
+ ! file . startsWith ( withTrailingSlash ( root ) ) &&
648
655
// some rollup plugins use null bytes for private resolved Ids
649
656
! file . includes ( '\0' ) &&
650
657
fs . existsSync ( file )
@@ -1222,7 +1229,7 @@ export function stripBase(path: string, base: string): string {
1222
1229
if ( path === base ) {
1223
1230
return '/'
1224
1231
}
1225
- const devBase = base [ base . length - 1 ] === '/' ? base : base + '/'
1232
+ const devBase = withTrailingSlash ( base )
1226
1233
return path . startsWith ( devBase ) ? path . slice ( devBase . length - 1 ) : path
1227
1234
}
1228
1235
0 commit comments