Skip to content

Files

Latest commit

 

History

History
123 lines (91 loc) · 2.43 KB

API.md

File metadata and controls

123 lines (91 loc) · 2.43 KB

Node API

Initialization

First, you need to initialize the API for your style guide config.

Using a JavaScript object:

const styleguidist = require('react-styleguidist');
const styleguide = styleguidist({
  components: './lib/components/**/*.js',
  webpackConfig: {
    module: {
      loaders: [
        {
          test: /\.jsx?$/,
          exclude: /node_modules/,
          loader: 'babel-loader',
        },
        {
          test: /\.css$/,
          loader: 'style-loader!css-loader?modules',
        },
      ],
    },
  },
});

Using a config file:

const styleguidist = require('react-styleguidist');
const styleguide = styleguidist(require('../styleguide.config.js'));

Or auto searching a config file:

const styleguidist = require('react-styleguidist');
const styleguide = styleguidist();

See all available config options.

Methods

build(callback)

Arguments

  1. callback(err, config, stats) (Function): A callback to be invoked when style guide is built:
  2. err (Object): error details.
  3. config (Object): normalized style guide config.
  4. stats (Object): webpack build stats.

Returns

(Compiler): webpack Compiler instance.

Example

const styleguidist = require('react-styleguidist');
styleguidist(require('../styleguide.config.js')).build((err, config) => {
  if (err) {
    console.log(err);
  }
  else {
    console.log('Style guide published to', config.styleguideDir);
  }
});

server(callback)

Arguments

  1. callback(err, config) (Function): A callback to be invoked when style guide is built:
  2. err (Object): error details.
  3. config (Object): normalized style guide config.

Returns

(Compiler): webpack Compiler instance.

Example

const styleguidist = require('react-styleguidist');
styleguidist(require('../styleguide.config.js')).server((err, config) => {
  if (err) {
    console.log(err);
  }
  else {
    console.log('Listening at http://' + config.serverHost + ':' + config.serverPort);
  }
});

makeWebpackConfig([env])

Arguments

  1. [env='production'] (String): production or development.

Returns

(Object): webpack config.

Example

// webpack.config.js
module.exports = [
    {
      // User webpack config
    },
    require('react-styleguidist')().makeWebpackConfig(),
];