Package detail

@brikcss/stakcss-bundler-postcss

brikcss20.4.0

Stakcss bundler which runs PostCSS.

brikcss, stakcss, bundler, stakcss bundler

readme

Stakcss PostCSS Bundler

Stakcss Bundler that compiles PostCSS.

NPM version NPM downloads per month Travis branch NPM version Coverage Status Commitizen friendly semantic release code style: prettier

Install

npm install @brikcss/stakcss @brikcss/stakcss-bundler-postcss --save-dev

Usage

  • Node:

      stak({
          bundlers: ['@brikcss/stakcss-bundler-postcss']
      });

    or with options and data:

      stak({
          bundlers: [{
              run: '@brikcss/stakcss-bundler-postcss',
              options: {}
          }]
      });
  • CLI:

      stak <source> [--output=<path>] --bundlers=@brikcss/stakcss-bundler-postcss

    or with a config file:

      stak --config=<path to config>

Bundler Configuration

Note: From a CLI, you must use a config file (--config=<path>) to configure the bundler.

  • bundler.options {Object} Options passed to PostCSS. The default options are:

      {
          from: typeof config.source === 'string' ? config.source : '',
          to: config.output,
          map: config.isProd
              ? false
              : {
                      inline: false,
                      prev: config.sourceMap ? config.sourceMap : false
                }
      }
  • bundler.plugins {Array} Array of PostCSS plugins to use.

See Stakcss for more on using Stakcss bundlers.