Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 771 Bytes

CONTRIBUTING.md

File metadata and controls

37 lines (25 loc) · 771 Bytes

Contributing

  1. Clone this repo, run yarn install
  2. To make it easier to test changes when develop, you can start an HTTP server that uses REST APIs to report size of packages.

To start the server, run –

yarn dev

The server runs at port 3000.

To build a package and get its build stats, run a curl request like so -

curl 'localhost:3000/size?p=<package-name>'

eg.

curl 'localhost:3000/size?p=react'

To build a package and get stats about exports that are exposed out of the package –

curl 'localhost:3000/exports?p=<package-name>'

To build a package and get stats about size of various exports that are exposed out of the package –

curl 'localhost:3000/export-sizes?p=<package-name>'