JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 137
  • Score
    100M100P100Q80694F
  • License MIT

Pack same CSS media query rules into one using PostCSS

Package Exports

  • css-mqpacker-webpack-plugin

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (css-mqpacker-webpack-plugin) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

css-mqpacker-webpack-plugin

npm version

The Webpack plugin for pack same CSS media query rules into one using PostCSS.

node-css-mqpacker

Install

npm i css-mqpacker-webpack-plugin --save-dev
#or
yarn add css-mqpacker-webpack-plugin -D

Example

webpack.config.js

const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const OptimizeCSSAssetsPlugin = require('optimize-css-assets-webpack-plugin');
const CSSMQPackerPlugin = require('css-mqpacker-webpack-plugin');

const isProd = (process.env.NODE_ENV === 'production');

module.exports = {

  /* ... */

  optimization: {
    minimize: isProd,
    minimizer: [
      new OptimizeCSSAssetsPlugin(),
      new CSSMQPackerPlugin(),
    ],
  },
  module: {
    rules: [

      /* ... */

      {
        test: /\.css$/,
        use: [
          isProd && { loader: MiniCssExtractPlugin.loader },
          { loader: 'css-loader' },
          { loader: 'postcss-loader' },
        ].filter(Boolean),
      },
    ],
  },
  plugins: [

    /* ... */

    isProd && new MiniCssExtractPlugin({
      filename: 'css/[name].css',
      chunkFilename: 'css/[name].css',
    }),
  ].filter(Boolean),
};

Configuration

regExp: (default: /\.css$/i)

A regular expression to match the asset name that the processor handles.

sort: (default: false)

By default, CSS MQPacker pack and order media queries as they are defined (the “first win” algorithm). If you want to sort media queries automatically, pass sort: true.

new CSSMQPackerPlugin({
  regExp: /\.css$/i,
  sort: false,
})

License

MIT