0.1.7 • Published 26 days ago

rollup-plugin-bundle-scss-postcss v0.1.7

Weekly downloads
-
License
MIT
Repository
github
Last release
26 days ago

rollup-plugin-bundle-scss-postcss

GitHub Action Node version NPM version License

Rollup .scss imports into one bundled .scss file.

Maybe you're writing an UI library with SCSS for styles, and you want to bundle all styles in components into one .scss file, so that users can import it and do some custom theming. That's it.

It also compiles the bundled file into .css using node-sass and postcss.

plugins: [
    bundleScss({bundlerOptions: {
      plugins: [
        autoprefixer(),
      ],
      use: [
        ['sass', {
          data: "@import './variables.scss'; ",
          includePaths: [path.join(__dirname, 'src')]
        }]
      ],
    }}),
  ],

It dependence on scss-bundle.

Installation

npm install -D rollup-plugin-bundle-scss

Usage

import bundleScss from 'rollup-plugin-bundle-scss';

export default {
  input: 'src/index.js',
  output: {
    file: 'dist/index.js',
    format: 'esm',
  },
  plugins: [
    // output to dist/index.scss
    bundleScss(),
    // output to dist/foo.scss
    // bundleScss({ output: 'foo.scss' }),
  ],
};

Using with rollup-plugin-postcss:

import bundleScss from 'rollup-plugin-bundle-scss';
import postcss from 'rollup-plugin-postcss';

export default {
  input: 'src/index.js',
  output: {
    file: 'dist/index.js',
    format: 'esm',
  },
  plugins: [
    // put it before postcss(), and set exclusive to false
    bundleScss({ exclusive: false }),
    postcss({
      // ...
    }),
  ],
};

API

bundleScss({
  // where to output bundled SCSS file
  output: String,

  // Whether SCSS file is exclusive to rollup-plugin-bundle-scss.
  // Defalut value: true
  // Set it to false when there're other plugin to handle SCSS file after bundleScss()
  exclusive: Boolean,

  // bundlerOptions will be passed into `scss-bundle` package,
  // see document here https://github.com/reactway/scss-bundle
  bundlerOptions: {
    // If tilde import is used, `project` is required for finding `node_modules`
    project: String,
    dedupeGlobs: String[],
    includePaths: String[],
    ignoreImports: String[],
  },
})
0.1.7

26 days ago

0.1.6

26 days ago

0.1.5

26 days ago

0.1.4

26 days ago