@brikcss/stakcss-bundler-postcss
v0.4.0
Published
Stakcss bundler which runs PostCSS.
Downloads
3
Maintainers
Readme
Stakcss PostCSS Bundler
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.