@21epub/create-parcel-react-library v0.2.0
create-parcel-react-library
CLI for creating reusable, modern React ts libraries using Rollup and Parcel.
Intro
This package was inspired by create-react-library
Simplify the progress of creating a react-ts library .
Take advantage of Parcel and Rollup .
Features
- Easy-to-use CLI
- Handles all modern JS features
- Bundles
commonjsandesmodule formats - parcel for example usage and local dev
- Rollup for bundling
- Babel for transpiling
- Jest + testing-library for react testing
- Supports complicated peer-dependencies
- Supports CSS modules
- TypeScript Only
- Sourcemap creation
- lint-staged support
- Conventional commit by
git-cz - standard-version support by
npm run release - github Actions
- Format on Save ( Vscode Editor )
- Travis CI & Code coverage by custom configration
- parcel-proxy-server for Proxy serve support
- storybook support
Install globally
This package requires node >= 10.
npm install -g @21epub/create-parcel-react-libraryUsage with npx
No need to create an empty folder before running.
npx @21epub/create-parcel-react-library(npx comes with npm 5.2+ and higher, see instructions for older npm versions)
Creating a New Module
create-parcel-react-libraryAnswer some basic prompts about your module, and then the CLI will perform the following steps:
- copy over the template
- install dependencies via yarn or npm
- install peers vis yarn or npm (You have to do this since peers will not auto installed , dev start will cause error !)
- initialize local git repo
At this point, your new module is ready and is all setup for local development.
Development
There's only one thing to do your development is enjoy your coding in src/ and your example in example/
npm start # start your example dev code Now, anytime you make a change to your library in src/ or example/ will live-reload your parcel dev so you can iterate on your component in real-time.
Update Peer Dependencies
After update peerDependencies in package.json .
npm run install-peers # reinstall peers after updateWith storybook
Init storybook environment by
npx sb initGet Start with Storybook and develop your Component, Reference docs
npm run storybookCommit
Commit Method Recommandation
npm run commit # lint before commit can save your time , and then conventional commit with git-czProxy Server
Set API proxy config in ./scripts/proxy.config.json
npm run start:proxy # start proxy serverOpen proxy server url: http://localhost:12345/
Publishing to npm
npm run release # Version and changelog
git push --follow-tags origin master
npm publish # The `prePublishOnly` hook will run before publish to build and test your packageThis builds commonjs and es versions of your module to dist/ and then publishes your module to npm.
Make sure that any npm modules you want as peer dependencies are properly marked as peerDependencies in package.json. The rollup config will automatically recognize them as peers and not try to bundle them in your module.
License
MIT © 21epub