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 1079d4f commit 0b45cdeCopy full SHA for 0b45cde
src/cli.ts
@@ -170,7 +170,13 @@ yargs
170
}
171
172
const prepare = 'bob build';
173
- const files = [source, output, '!**/__tests__'];
+ const files = [
174
+ source,
175
+ output,
176
+ '!**/__tests__',
177
+ '!**/__fixtures__',
178
+ '!**/__mocks__',
179
+ ];
180
181
for (const key in entries) {
182
const entry = entries[key];
templates/common/$package.json
@@ -15,7 +15,9 @@
15
"cpp",
16
"<%= project.podspec %>.podspec",
17
"!lib/typescript/example",
18
- "!**/__tests__"
+ "!**/__tests__",
19
+ "!**/__fixtures__",
20
+ "!**/__mocks__"
21
],
22
"scripts": {
23
"test": "jest",
0 commit comments