File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -313,7 +313,7 @@ jobs:
313
313
- custom_attach_workspace
314
314
- setup_windows
315
315
# Run partial e2e suite on PRs only. Master will run the full e2e suite with sharding.
316
- - run : if (Test-Path env:CIRCLE_PR_NUMBER) { node tests\legacy-cli\run_e2e.js "--glob=tests/{ basic,ivy} /**" }
316
+ - run : if (Test-Path env:CIRCLE_PR_NUMBER) { node tests\legacy-cli\run_e2e.js "--glob={ tests/basic/**,tests/i18n/extract-ivy.ts} " }
317
317
318
318
e2e-cli-win :
319
319
executor : windows-executor
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ export default function localizeExtractLoader(
47
47
let filename = loaderContext . resourcePath ;
48
48
if ( map ?. file ) {
49
49
// The extractor's internal sourcemap handling expects the filenames to match
50
- filename = nodePath . posix . join ( loaderContext . context , map . file ) ;
50
+ filename = nodePath . join ( loaderContext . context , map . file ) ;
51
51
}
52
52
53
53
// Setup a virtual file system instance for the extractor
@@ -64,13 +64,13 @@ export default function localizeExtractLoader(
64
64
}
65
65
} ,
66
66
resolve ( ...paths : string [ ] ) : string {
67
- return nodePath . posix . resolve ( ...paths ) ;
67
+ return nodePath . resolve ( ...paths ) ;
68
68
} ,
69
69
exists ( path : string ) : boolean {
70
70
return path === filename || path === filename + '.map' ;
71
71
} ,
72
72
dirname ( path : string ) : string {
73
- return nodePath . posix . dirname ( path ) ;
73
+ return nodePath . dirname ( path ) ;
74
74
} ,
75
75
} ;
76
76
You can’t perform that action at this time.
0 commit comments