We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
As the title says, files which only have and ending, but no actual name, like .txt, .xml or .config are ignored during packaging.
Error is reproducable the following way: File structure: Folder "test" with two files: ".txt" and "test.txt"
Command used: gulp.src("./test/**") .pipe(zip("test.zip")) .pipe(gulp.dest("."))
Zip file "test.zip" including the file "test.txt" is created. File ".txt" is missing.
The text was updated successfully, but these errors were encountered:
You want the dot option: https://gulpjs.com/docs/en/api/src
dot
Sorry, something went wrong.
Thanks, that solves my problem!
No branches or pull requests
As the title says, files which only have and ending, but no actual name, like .txt, .xml or .config are ignored during packaging.
Error is reproducable the following way:
File structure:
Folder "test"
with two files: ".txt" and "test.txt"
Command used:
gulp.src("./test/**")
.pipe(zip("test.zip"))
.pipe(gulp.dest("."))
Zip file "test.zip" including the file "test.txt" is created. File ".txt" is missing.
The text was updated successfully, but these errors were encountered: