Parcel

Deploy your Parcel applications to Zephyr Cloud with zero-configuration bundling. The Zephyr Parcel reporter integrates seamlessly with Parcel's build process.

Prerequisites
Quick Setup with Codemod
npm
yarn
pnpm
bun
npx with-zephyr

This detects your bundler and configures Zephyr automatically. Learn more →

For manual setup, continue below.

Installation

Install the Parcel reporter in your project:

npm
yarn
pnpm
bun
npm add --dev parcel-reporter-zephyr

Quick Start

To add Zephyr to a Parcel application, add the reporter to your .parcelrc configuration.

// .parcelrc
{
  "extends": "@parcel/config-default",
  "reporters": ["...", "parcel-reporter-zephyr"]
}