Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .circleci/configurations/jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1321,4 +1321,4 @@ jobs:
command: echo "//registry.npmjs.org/:_authToken=${CIRCLE_NPM_TOKEN}" > ~/.npmrc
- run:
name: Find and publish all bumped packages
command: node ./scripts/monorepo/find-and-publish-all-bumped-packages.js
command: node ./scripts/releases-ci/publish-updated-packages.js

This file was deleted.

124 changes: 0 additions & 124 deletions scripts/monorepo/find-and-publish-all-bumped-packages.js

This file was deleted.

2 changes: 2 additions & 0 deletions scripts/monorepo/for-each-package.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ const getDirectories = source =>
*
* @param {forEachPackageCallback} callback The callback which will be called for each package
* @param {{includeReactNative: (boolean|undefined)}} [options={}] description
*
* @deprecated Use scripts/releases/utils/monorepo.js#getPackages instead
*/
const forEachPackage = (callback, options = DEFAULT_OPTIONS) => {
const {includeReactNative} = options;
Expand Down
11 changes: 11 additions & 0 deletions scripts/releases-ci/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# scripts/releases-ci

CI-only release scripts — intended to run from a CI workflow (CircleCI or GitHub Actions).

## Commands

For information on command arguments, run `node <command> --help`.

### `publish-updated-packages`

Publishes all updated packages (excluding `react-native`) to npm. Triggered when a commit on a release branch contains `#publish-packages-to-npm`.
Loading