Skip to content

Commit

Permalink
[LOCAL] skip un-semver packages in 71 branch
Browse files Browse the repository at this point in the history
  • Loading branch information
kelset committed Aug 21, 2023
1 parent bfd26b7 commit a90485a
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion scripts/monorepo/for-each-package.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,15 @@ const {readdirSync, readFileSync} = require('fs');
const ROOT_LOCATION = path.join(__dirname, '..', '..');
const PACKAGES_LOCATION = path.join(ROOT_LOCATION, 'packages');

const PACKAGES_BLOCK_LIST = ['react-native'];
// 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)
const PACKAGES_BLOCK_LIST = [
'react-native',
'assets',
'eslint-config-react-native-community',
'eslint-plugin-react-native-community',
'normalize-color',
'polyfills',
];

/**
* Function, which returns an array of all directories inside specified location
Expand Down

0 comments on commit a90485a

Please sign in to comment.