react-storybook-scripts v0.9.0
react-storybook-scripts
This package includes scripts and configuration used by Create React App.
Please refer to its documentation:
- Getting Started – How to create a new app.
- User Guide – How to develop apps bootstrapped with Create React App.
It will also setup and configure react-storybook for easy component testing. Start the storybook dev server via
npm run storybookAlso included is a script to ease the creation of new components, which can be invoked via
npm run componentthe 'npm' command may be replace with 'yarnpkg' if you prefer to use yarn as your package manager
Additionally, I have added support for css variables and css rule nesting via postcss. eg:
.button {
border: 1px solid $primary;
border-radius: 3px;
background-color: $lightPrimary;
cursor: pointer;
font-size: 15;
padding: 3px 10px;
margin: 10px;
&:focus {
outline: none;
box-shadow: none;
}
&:hover {
border: 1px solid $lightPrimary;
background-color: $primary;
color: $textLightPrimary;
}
}All css files created with the component script include a stylesheet located at src/lib/variables.css where variables may be defined.
Installation
create-react-app my-awesome-app --scripts-version react-storybook-scriptsEnjoy.
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago