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:
313313 - custom_attach_workspace
314314 - setup_windows
315315 # 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} " }
317317
318318 e2e-cli-win :
319319 executor : windows-executor
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ export default function localizeExtractLoader(
4747 let filename = loaderContext . resourcePath ;
4848 if ( map ?. file ) {
4949 // 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 ) ;
5151 }
5252
5353 // Setup a virtual file system instance for the extractor
@@ -64,13 +64,13 @@ export default function localizeExtractLoader(
6464 }
6565 } ,
6666 resolve ( ...paths : string [ ] ) : string {
67- return nodePath . posix . resolve ( ...paths ) ;
67+ return nodePath . resolve ( ...paths ) ;
6868 } ,
6969 exists ( path : string ) : boolean {
7070 return path === filename || path === filename + '.map' ;
7171 } ,
7272 dirname ( path : string ) : string {
73- return nodePath . posix . dirname ( path ) ;
73+ return nodePath . dirname ( path ) ;
7474 } ,
7575 } ;
7676
You can’t perform that action at this time.
0 commit comments