Skip to content

Commit 11cf84a

Browse files
authored
fix: Invalid builder bob config (#475)
## Description It seems that the `react-native-builder-bob` no longer accepts an array of excludes after the upgrade and it must be passed a single string now.
1 parent f5e3c89 commit 11cf84a

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

packages/react-native-sortables/bob.config.cjs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
module.exports = {
22
source: 'src',
33
output: 'dist',
4-
exclude: [
5-
'**/{__tests__,__fixtures__,__mocks__}/**',
6-
'**/*.test.{js,jsx,ts,tsx}'
7-
],
4+
exclude: '{**/{__tests__,__fixtures__,__mocks__}/**,**/*.test.{js,jsx,ts,tsx}}',
85
targets: [
96
['module', { configFile: true }],
107
['typescript', { project: 'tsconfig.build.json' }]

0 commit comments

Comments
 (0)