Rollup multiple .scss, .sass and .css imports
Integrates nicely with rollup-plugin-vue2
Installation
# Rollup v0.60+ and v1+
npm install --save-dev rollup-plugin-scss
# Rollup v0.59 and below
npm install --save-dev rollup-plugin-scss@0
Usage
import scss from 'rollup-plugin-scss'
export default {
entry: 'entry.js',
dest: 'bundle.js',
plugins: [
scss()
]
}
import './reset.css'
Options
Options are passed to node-sass.
By default the plugin will base the filename for the css on the bundle destination.
scss({
output: true,
output: 'bundle.css',
output: function (styles, styleNodes) {
writeFileSync('bundle.css', styles)
},
output: false,
failOnError: true,
prefix: `@import "./fonts.scss";`
})
Changelog
Please see CHANGELOG for more information what has changed recently.
Contributing
Contributions and feedback are very welcome.
To get it running:
- Clone the project.
npm install
Credits
License
The MIT License (MIT). Please see License File for more information.