This package is deprecated, please use webpack-blocks instead.
Basic Webpack loaders:
babel-loader
with babel-preset-react-app presetcss-loader
andstyle-loader
json-loader
url-loader
for all other files
Based on create-react-app but don’t include Autoprefixer.
Usage with React Styleguidist
npm install --save-dev loaders
// styleguide.config.js
const loaders = require('loaders');
module.exports = {
components: 'lib/components/**/[A-Z]*.js',
webpackConfig: {
module: {
// Enable all loaders
loaders: loaders.all,
// OR only needed loaders
loaders: [
loaders.babel,
loaders.css,
loaders.url,
// Other loaders for your styleguide
],
},
},
};
The changelog can be found on the Releases page.
Everyone is welcome to contribute. Please take a moment to review the contributing guidelines.
Artem Sapegin and contributors.
MIT License, see the included License.md file.