Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 550 Bytes

README.md

File metadata and controls

26 lines (20 loc) · 550 Bytes

react-qui-components

common react components

Generate a new component project environment

$ cd packages
$ create-react-app <COMPONENT_NAME> --scripts-version akiya-react-component-scripts

# remove the .git folder generate from creat-react-app
$ cd <COMPONENT_NAME> && rm -rf .git

Package naming in package.json

Please prefix @react-qui to name field of package.json. e.g. @react-qui/button.

Add below setting in package.json also.

{
  "private": false,
  "publishConfig": {
    "access": "public"
  }
}