-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
gulp.dest() wrong path if foldername contains "*" #2750
Comments
I have this problem too. I did not change versions in package.json, but some updates in gulp destroyed my project. |
This should be fixed in gulp 5 |
This comment has been minimized.
This comment has been minimized.
|
@peteichuk Can you post some code that demonstrates your issue? |
Hello, sure. This is a simple code, but the project is very large and uses multiple configurations in a foreach loop, pushing other tasks. However, there's an issue with excluding "dest" files, which results in having bad images (this images not opening) at their original size and some problematic JS files. I don't understand where the problem lies—whether it's with the mapping in the template string src ('apps/_shared/libs/*') or memory for Node.js. But ever since I started creating new builds after 2023, I've been experiencing this issue, even though I haven't made any updates to the config or the project. Code:
and the second problem shows it's Thanks! |
If the name of the folder contains the character "*", then gulp.dest() does not work properly.
In my example, gulp saves the css file in:
*workspaces / project01 / css / *workspaces / project01 / css /
my folder structure:
my code:
The text was updated successfully, but these errors were encountered: