bridge deploy
terminal
$
pnpm orderly bridge deployBuild, validate, and register a bridge with the platform.
Usage
$ pnpm orderly bridge deploy -n <name> [options]
Options
-n, --name <name>Bridge package name (required)--dry-runValidate without deploying--forceOverwrite existing bridge typeExamples
$ pnpm orderly bridge deploy -n shopify
Deploy the Shopify bridge
$ pnpm orderly bridge deploy -n my-platform --dry-run
Validate only
$ pnpm orderly bridge deploy -n shopify --force
Force overwrite
Deploy Steps
- Validate — Runs
bridge validatechecks - Build — Compiles the package with tsup
- Register — Inserts/updates the
bridge_typestable - Available — Users can now configure this bridge in the portal
See Deploying a Bridge for more context.