Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
/nxPublic

Commit5eabd6c

Browse files
authored
fix(core): reduce likelihood of ENAMETOOLONG error on windows (#13850)
1 parent565652f commit5eabd6c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎packages/nx/src/hasher/git-hasher.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export async function getGitHashForFiles(
1818
// the overall comand, rather than the number of individual
1919
// arguments. Since file paths are large and rather variable,
2020
// we use a smaller batchSize.
21-
constbatchSize=process.platform==='win32' ?500 :4000;
21+
constbatchSize=process.platform==='win32' ?250 :4000;
2222
for(
2323
letstartIndex=0;
2424
startIndex<filesToHash.length;

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp