I try to get a glob pattern which includes every file in every subdirectory, but I can't figure out how to include hidden files.
Example, all those should match:
.git
.github/workflow.yml
index.js
src/index.js
src/components/index.js
This works for all files with name and extension, but leaves out hidden files:
**/**
More specific background: I want so make an archive with all files except node_modules (and potentially some others), using the archiver library.
archive.directory("???", {
ignore: ["node_modules/", ...some other files],
});