2.1.1 • Published 3 years ago

@fwrlines/utils v2.1.1

Weekly downloads
73
License
ISC
Repository
github
Last release
3 years ago

template-now-storybook

Inspired by (https://github.com/zeit/now-examples/tree/master/storybook), made more featureful

Features

  • Babel 7 integration
  • Storybook 5.2.8 for React
  • React Proptypes integration
  • Storybook Docs Addon
  • Eslint Config
  • Stylelint Config (From Palantir)
  • Compiles to both cjs and esm for integration into your apps
  • Made to be deployed on zeit/now. In the continuous deployment style.

Compatibility

Module | Version React | 16.8 Babel | 7.7.7 Storybook | 5.2.8

This has not been tested on previous versions

Installation

  1. Clone / Fork the template
  2. Install the local packages : npm i
  3. To compile : (done automatically if you install the package through npm) : npm run compile or npm run compile:show (displays the output file tree)
  4. (optional) configure the linters to match your coding style : .eslintrc.js for js and .stylelintrc for scss
  5. (optional) Install a scss library (see below)
  6. (optional) Syncronize with zeit.now. NEw project / Select from github your fork of this template. It goes automatically online.
  7. Create your new components !

Install a SCSS Library

sass-loader, node-sass are already installed as devDependencies

  1. CLone the scss library to src/scss (for instance)
  2. Import the scss lib main file in .storybook/config.js for instance import 'scss/main.scss if you installed it in src/scss
  3. (Optional) If you want to add the scss library to the context of the components scss files (so that you can reuse the scss variables in the other components), add the path the to the sass-loader, as follows
const ADD_SCSS_LIB_TO_CONTEXT = '../src/scss'

...


{
 test: /\.scss$/,
  loaders: [
    "style-loader",
    "css-loader",
    { loader:'sass-loader', options: {
      sassOptions: {
        includePaths: [path.resolve(__dirname, ADD_SCSS_LIB_TO_CONTEXT)],
      },
    }},
],
 include: path.resolve(__dirname, "../")
}

Create new components

To create new modules in the same coding style

  1. Create the module
cd ui/module_group
yo @fwrlines/react-component FancyButton
echo "export { FancyButton } from './FancyButton'" >> ./index.js #The local index.js file, at ui/module_group
  1. Create the story
cd src/stories
yo @fwrlines/storybook-story module_group|FancyButton
  1. The story automatically appears in the storybook

(bonus) To make things a bit faster ... in you .bashrc or .zshrc

alias comp="yo @fwrlines/react-component"

alias story="yo @fwrlines/storybook-story
2.1.1

3 years ago

2.1.0

3 years ago

2.0.3

3 years ago

2.0.2

3 years ago

2.0.1

3 years ago

2.0.0

3 years ago

1.13.1

3 years ago

1.13.0

3 years ago

1.12.0

3 years ago

1.11.0

4 years ago

1.10.3

4 years ago

1.10.2

4 years ago

1.9.1

4 years ago

1.10.1

4 years ago

1.10.0

4 years ago

1.9.0

4 years ago

1.8.0

4 years ago

1.6.8

4 years ago

1.6.7

4 years ago

1.6.6

4 years ago

1.6.5

4 years ago

1.6.4

4 years ago

1.6.3

4 years ago

1.6.2

4 years ago

1.6.1

4 years ago

1.7.0

4 years ago

1.6.0

4 years ago

1.5.1

4 years ago

1.5.0

4 years ago

1.4.0

4 years ago

1.3.0

4 years ago

1.1.1

4 years ago

1.1.0

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago