0.0.4 • Published 6 years ago

ez-react-component v0.0.4

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

ez-react-component

NPM

an opinionated CLI to bootstrap your React component development.

Inspired by fritz-c's setup for his projects. A lot of code was taken from create-react-app

Usage

npm i -g ez-react-component

# create the environment in my-component
ez-react-component my-component

Options

--use-npm # pretty self explanatory
--verbose # print everything
--info # additional debug info

Scripts

# run the demo app server on localhost:3001
yarn start

# run the react storybook server on localhost:3001
yarn storybook

# build the component
yarn build

# build the demo website
yarn build:demo

# build the storybook
yarn build-storybook

# run the storybook tests using enzyme and jest
yarn test

# see above but watching for changes
yarn test:watch

# clean the dist directory
yarn clean

# clean the public directory
yarn clean:demo

# lint the project
yarn lint

# run prettier to make your code pretty
yarn prettier

# deploy the demo site to gh pages
yarn deploy