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
Hi, I've ran into same troubles and by experimenting a little I've found the trouble is with dot folders in node_modules which are being copied despite the rules.
I'd say, the problem is in node_modules/**/.* pattern. It does exclude only dot files, but not folders.
To exclude even dot folders you have to add node_modules/**/.*/** rule as well.
Is there something wrong with my pattern? Some subfolders and elements in the node modules folder get uploaded despite having excluded it.
include: ["*.**", "dist/*"], exclude: [ "dist/**/*.map", "src", "src/**", "src/**/.*", ".*", "node_modules", "node_modules/**", "node_modules/**/.*", ".git/**" ],
cheers Stirling
The text was updated successfully, but these errors were encountered: