Skip to content

Commit a90485a

Browse files
committed
[LOCAL] skip un-semver packages in 71 branch
1 parent bfd26b7 commit a90485a

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

scripts/monorepo/for-each-package.js

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,15 @@ const {readdirSync, readFileSync} = require('fs');
1313
const ROOT_LOCATION = path.join(__dirname, '..', '..');
1414
const PACKAGES_LOCATION = path.join(ROOT_LOCATION, 'packages');
1515

16-
const PACKAGES_BLOCK_LIST = ['react-native'];
16+
// in 71 some packages don't follow semver so we don't want to release further. (and ofc we want to exclude react-native itself)
17+
const PACKAGES_BLOCK_LIST = [
18+
'react-native',
19+
'assets',
20+
'eslint-config-react-native-community',
21+
'eslint-plugin-react-native-community',
22+
'normalize-color',
23+
'polyfills',
24+
];
1725

1826
/**
1927
* Function, which returns an array of all directories inside specified location

0 commit comments

Comments
 (0)