Releases: TryKickoff/react-components
Releases · TryKickoff/react-components
v1.0.5
Production Bundle Sizes
Format | Size |
---|---|
CJS | 6.39 KB (2.01 KB Gzipped) |
UMD | 5.56 KB (1.88 KB Gzipped) |
ESM | 5.78 KB (1.88 KB Gzipped) |
Rollup changes
We no longer include a
.mjs
file in our compiled distribution. Following the pattern React uses, we now include CommonJS, UMD, and ES Module files in separate directories. All have a.js
extension.
This means the dist
folder structure that gets generated on build now uses the following pattern:
Previous |
---|
dist/kickoff-react-components.js |
dist/kickoff-react-components.mjs |
New |
---|
dist/cjs/kickoff-react-components |
dist/esm/kickoff-react-components |
dist/esm/kickoff-react-components |
Additionally, the files will now alter their names based on whether they were built in
Development
orProduction
, and whether or not they are minified.
dist/cjs/kickoff-react-components.development.js
dist/cjs/kickoff-react-components.production.min.js
Other notable changes
v1.0.1
React Components
This is the initial publish of Kickoff React Components on NPM.
You can install it using
npm install @kickoff/react-components