You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[01:29:42] Using gulpfile F:...\gulpfile.mjs
[01:29:42] Starting 'build-debug'...
[01:29:42] Starting '...'...
[01:29:42] Finished '...' after 209 ms
[01:29:42] Starting '...'...
[01:29:42] Finished '...' after 107 ms
[01:29:42] Starting '...'...
(node:20356) [DEP0180] DeprecationWarning: fs.Stats constructor is deprecated.
(Use node --trace-deprecation ... to show where the warning was created)
[01:29:42] Finished '...' after 82 ms
[01:29:42] Starting 'copy-changed'...
[01:29:43] Finished 'copy-changed' after 1.1 s
[01:29:43] Finished 'build-debug' after 1.54 s
Please provide the following information:
OS & version: Windows 11
node version (run node -v): v22.3.0
npm version (run npm -v): 10.8.2
gulp version (run gulp -v):
CLI version: 3.0.0
Local version: 5.0.0
The text was updated successfully, but these errors were encountered:
The previous task copies stuff to that "_delta" folder, inside a mergeStream (which used to be on merge-stream, but when I was trying to fix this issue, I had upgraded to ordered-read-streams, but the same happens).
Seems that what's happening is that at the time "copy-changed" runs, the files aren't ready yet or so.
If I put a "sleep" of 3 seconds, it seems to work now.
What were you expecting to happen?
All 840 files should be copied, recursively.
What actually happened?
Only the first few files (sorted alphabetically) of each folder are being copied, instead of all files.
This used to work, but seems broken since v5.
This is happening as the last step of a
gulp.series
, consistently.But if I run
npx gulp copy-changed
, it copies all the files, always.Please give us a sample of your gulpfile
Terminal output / screenshots
Please provide the following information:
node -v
): v22.3.0npm -v
): 10.8.2gulp -v
):CLI version: 3.0.0
Local version: 5.0.0
The text was updated successfully, but these errors were encountered: