@abcnews/story-lab-component-library v1.0.0
Story Lab component library
A collection of reusable React components for use in Story Lab ... stories.
Usage
npm install @abcnews/story-lab-component-libraryThis library is in its infancy and is barely documented or even useful.
You can see all available components in the storybook
Development
Get started:
git clone https://github.com/abcnews/story-lab-component-library.git
cd story-lab-component-library
npm iThis repository uses TSDX with Storybook.
The recommended workflow is to run TSDX in one terminal and Storybook in another:
npm startThis builds to /dist and runs the project in watch mode so any edits you save inside src causes a rebuild to /dist.
Storybook
Run inside another terminal:
npm run storybookThis loads the stories from ./stories.
NOTE: Stories should reference the components as if using the library, similar to the example playground. This means importing from the root project directory. This has been aliased in the tsconfig and the storybook webpack config as a helper.
Build & release
Releases are built and deployed using np.
npm run releaseIf you're deploying a new production release, you should also update the Storybook. The following command will freshly build and deploy it to GitHub pages.
npm run deploy-storybook