File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed
pyright-internal/src/analyzer Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 1010
1111jobs :
1212 build :
13- runs-on : ubuntu-latest
13+ strategy :
14+ matrix :
15+ os : [ubuntu-latest, macos-latest]
16+ runs-on : ${{ matrix.os }}
1417 steps :
1518 - uses : actions/checkout@v3
1619 - name : Install asdf.
Original file line number Diff line number Diff line change @@ -293,7 +293,9 @@ export class Program {
293293 }
294294
295295 // Add the new files. Only the new items will be added.
296- this . addTrackedFiles ( filePaths ) ;
296+ // Normalize paths to ensure consistency with other code paths.
297+ const normalizedFilePaths = filePaths . map ( path => normalizePathCase ( this . _fs , path ) ) ;
298+ this . addTrackedFiles ( normalizedFilePaths ) ;
297299
298300 return this . _removeUnneededFiles ( ) ;
299301 }
Original file line number Diff line number Diff line change 55 "main" : " index.js" ,
66 "scripts" : {
77 "build" : " webpack --mode production --progress" ,
8+ "build-agent" : " webpack --mode development" ,
89 "clean" : " shx rm -rf ./dist ./out README.md LICENSE.txt" ,
910 "prepack" : " npm run clean && shx cp ../../README.md . && shx cp ../../LICENSE.txt . && npm run build" ,
1011 "check-snapshots" : " npm run update-snapshots -- --check" ,
You can’t perform that action at this time.
0 commit comments