We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5578a05 commit b8db426Copy full SHA for b8db426
.changeset/tasty-feet-complain.md
@@ -0,0 +1,5 @@
1
+---
2
+"bob-the-bundler": minor
3
4
+
5
+Ignore `__tests__` and `__testUtils__` from bundling
src/commands/build.ts
@@ -33,6 +33,8 @@ interface PackageInfo {
33
const filesToExcludeFromDist = [
34
"**/test/**",
35
"**/tests/**",
36
+ "**/__tests__/**",
37
+ "**/__testUtils__/**",
38
"**/*.spec.*",
39
"**/*.test.*",
40
"**/dist",
0 commit comments