hsdp-c v1.0.4
Support
If you like the project and want to support my work, you can buy me a coffee :)
Getting started
There are two methods for getting started with this repo.
Familiar with Git?
git clone git@github.com:KaiHotz/react-rollup-boilerplate.git
cd react-rollup-boilerplate
yarn installNot Familiar with Git?
Click here to download the .zip file. Extract the contents of the zip file, then open your terminal, change to the project directory, and:
yarn installDeveloping
To start the developing run :
yarn startThis will build a version of your library, run the watcher and also run the Styleguide.
To open the Styleguide manualy open your Browser and navigate to http://localhost:6060.
Start developing your components in src/components folder and update the src/index.js file acordingly.
Always provide an YourComponent.examples.md file, so your component will show up in the Styleguide.
You can refer to example Button component, but i think you'll get the idea.
Proposals (Babel)
For smoother development some Babel plugin are included
Styling your components
SCSS and CSS are supported out of the box just import your styles into your component like you normaly would do.
For the use of CSS Modules refere to rollup-plugin-postcss
Testing
Testing is done with Jest, Enzyme and Jasmine Matchers
You can refer to Button.test.js as an example.
yarn testor (for getting coverage)
yarn test:coverageLinting
Linting is set up through ESLint and configured with eslint-config-airbnb
You can modify linting rules by overriding them in the .eslintrc.json file.
yarn lintor (for for automatic fixing if possible)
yarn lint:fixPublishing your library to NPM
To release your library to NPM or your private Registry, make sure you have an active account at NPM, your .npmrc file is correctly setup and the repository url in package.json file is set to your repoitory url, then:
yarn releaseStyleguide
For custom layouts, styleing and more information about the Styleguide please refer to React Styleguidist documentation.
Deploy the Styleguide to GitHub Pages
Make sure the repository url in package.json file is set to your repoitory url, then:
yarn deployScripts
yarn start: Only serves the Styleguide.yarn build: Builds your library (build can be faound indistfolder).yarn styleguide:build: Builds the static Styleguide in case you want to deploy it.yarn test: Runs the tests.yarn test:coverage: Runs the test and shows the coverage.yarn lint: Runs the linter, typescipt typecheck and stylelint.yarn lint:fix: Runs the linter, typescipt typecheck and stylelint and fixes automatic fixable issues.yarn eslint: Runs only the javascipt linter.yarn eslint:fix: Runs only the javascipt linter and fixes automatic fixable issues.yarn stylelint: Runs only the sytle linter.yarn stylelint:fix: Runs only the sytle linter and fixes automatic fixable issues.yarn check-types: Runs typescript type checker.yarn release: Publishes your Library on NPM or your private Registry (depending on your config in your.npmrcfile).yarn deploy: Deploys the Styleguide to GitHub Pages.