UNPKG

orionsoft-react-scripts

Version:

Orionsoft Configuration and scripts for Create React App.

274 lines (224 loc) 5.95 kB
# PostCSS for Webpack [![Build Status][ci-img]][ci] <img align="right" width="95" height="95" title="Philosopher’s stone, logo of PostCSS" src="http://postcss.github.io/postcss/logo.svg"> [PostCSS] loader for [webpack] to postprocesses your CSS with [PostCSS plugins]. <a href="https://evilmartians.com/?utm_source=postcss"> <img src="https://evilmartians.com/badges/sponsored-by-evil-martians.svg" alt="Sponsored by Evil Martians" width="236" height="54"> </a> [PostCSS plugins]: https://github.com/postcss/postcss#plugins [PostCSS]: https://github.com/postcss/postcss [webpack]: http://webpack.github.io/ [ci-img]: https://travis-ci.org/postcss/postcss-loader.svg [ci]: https://travis-ci.org/postcss/postcss-loader ## Install ```sh npm install postcss-loader --save-dev ``` ## Usage You can configure PostCSS Loader in common PostCSS config or directly in Webpack config. Common PostCSS config is recommended way, because many PostCSS tools will be able to share it. ### PostCSS Config Add PostCSS Loader to `webpack.config.js`. Put it before `css-loader` and `style-loader`. But after `sass-loader`, if you use it. ```js module.exports = { module: { loaders: [ { test: /\.css$/, loader: [ 'style-loader', 'css-loader?importLoaders=1', 'postcss-loader' ] } ] } } ``` Then create `postcss.config.js`: ```js module.exports = { plugins: [ require('precss'), require('autoprefixer') ] } ``` You could put different configs in different directories. For example, global config in `project/postcss.config.js` and override its plugins in `project/src/legacy/postcss.config.js`. You can read more about common PostCSS config in [postcss-load-config]. [postcss-load-config]: https://github.com/michael-ciniawsky/postcss-load-config ### Webpack 2.x Config ```js module.exports = { module: { rules: [ { test: /\.css$/, use: [ 'style-loader', { loader: 'css-loader', options: { importLoaders: 1 } }, { loader: 'postcss-loader', options: { plugins: function () { return [ require('precss'), require('autoprefixer') ]; } } } ] } ] } } ``` ### Webpack 1.x Config ```js module.exports = { module: { loaders: [ { test: /\.css$/, loader: [ 'style-loader', 'css-loader?importLoaders=1', 'postcss-loader' ] } ] }, postcss: function () { return [ require('precss'), require('autoprefixer') ]; } } ``` ## Options ### Syntaxes PostCSS can transforms styles in any syntax, not only in CSS. There are 3 parameters to control syntax: * `syntax` accepts module name with `parse` and `stringify` function. * `parser` accepts module name with input parser function. * `stringifier` accepts module name with output stringifier function. ```js module.exports = { module: { loaders: [ { test: /\.sss/, loader: [ 'style-loader', 'css-loader?importLoaders=1', 'postcss-loader?parser=sugarss' ] } ] } } ``` ### SourceMaps Loader will use source map settings from previous loader. You can set this `sourceMap` parameter to `inline` value to put source maps into CSS annotation comment: ```js module.exports = { module: { loaders: [ { test: '\/.css', loader: [ 'style-loader', 'css-loader?importLoaders=1', 'postcss-loader?sourceMap=inline' ] } ] } } ``` ## Examples ### CSS Modules This loader [cannot be used] with [CSS Modules] out of the box due to the way `css-loader` processes file imports. To make them work properly, either add the css-loader’s [`importLoaders`] option ```js … { test: /\.css$/, loader: [ 'style-loader', 'css-loader?modules&importLoaders=1', 'postcss-loader' ] } … ``` or use [postcss-modules] plugin instead of `css-loader`. [`importLoaders`]: https://github.com/webpack/css-loader#importing-and-chained-loaders [postcss-modules]: https://github.com/outpunk/postcss-modules [cannot be used]: https://github.com/webpack/css-loader/issues/137 [CSS Modules]: https://github.com/webpack/css-loader#css-modules ### JS Styles If you want to process styles written in JavaScript you can use the [postcss-js] parser. ```js … { test: /\.style.js$/, loader: [ 'style-loader', 'css-loader?modules&importLoaders=1', 'postcss-loader?parser=postcss-js', 'babel' ] } … ``` As result you will be able to write styles as: ```js import colors from './config/colors' export default { '.menu': { color: colors.main, height: 25, '&_link': { color: 'white' } } } ``` If you use JS styles without `postcss-js` parser, you can add `exec` parameter: ```js … { test: /\.style.xyz$/, loader: [ 'style-loader', 'css-loader?modules&importLoaders=1', 'postcss-loader?parser=custom-parser&exec' ] } … ``` [postcss-js]: https://github.com/postcss/postcss-js ### Webpack Events Webpack provides webpack plugin developers a convenient way to hook into the build pipeline. The postcss-loader makes use of this event system to allow building integrated postcss-webpack tools. See the [example] implementation. Event `postcss-loader-before-processing` is fired before processing and allows to add or remove postcss plugins. [example]: https://github.com/postcss/postcss-loader/blob/master/test/support/webpack-plugins/rewrite.js