All Projects → nathancahill → rollup-plugin-collect-sass

nathancahill / rollup-plugin-collect-sass

Licence: MIT license
Collect Sass, then compile

Programming Languages

javascript
184084 projects - #8 most used programming language
CSS
56736 projects

Projects that are alternatives of or similar to rollup-plugin-collect-sass

rollup-plugin-tagged-template
Use plain HTML files as tagged templates.
Stars: ✭ 24 (+41.18%)
Mutual labels:  rollup, rollup-plugin
rollup-plugin-closure-compiler-js
Rollup plugin for optimizing JavaScript with google-closure-compiler-js.
Stars: ✭ 31 (+82.35%)
Mutual labels:  rollup, rollup-plugin
rollup-plugin-purs
Bundles PureScript modules with Rollup
Stars: ✭ 71 (+317.65%)
Mutual labels:  rollup, rollup-plugin
rollup-plugin-sizes
Rollup plugin to display bundle contents & size information
Stars: ✭ 77 (+352.94%)
Mutual labels:  rollup, rollup-plugin
rollup-plugin-html
Import HTML files as strings in rollup build
Stars: ✭ 36 (+111.76%)
Mutual labels:  rollup, rollup-plugin
rollup-plugin-jscc
Conditional compilation and compile-time variable replacement for Rollup
Stars: ✭ 52 (+205.88%)
Mutual labels:  rollup, rollup-plugin
postcss-font-grabber
A postcss plugin, it grabs remote font files and update your CSS, just like that.
Stars: ✭ 26 (+52.94%)
Mutual labels:  rollup, rollup-plugin
rollup-plugin-markdown
import JavaScript from Markdown code blocks
Stars: ✭ 16 (-5.88%)
Mutual labels:  rollup, rollup-plugin
rollup-plugin-generate-package-json
Generate package.json file with packages from your bundle using Rollup
Stars: ✭ 29 (+70.59%)
Mutual labels:  rollup, rollup-plugin
rollup-plugin-inject-process-env
Inject environment variables in process.env with Rollup
Stars: ✭ 48 (+182.35%)
Mutual labels:  rollup, rollup-plugin
rollup-plugin-generate-html-template
Rollup plugin for automatically injecting a script tag with the final bundle into an html file.
Stars: ✭ 58 (+241.18%)
Mutual labels:  rollup, rollup-plugin
web-config
A Rollup configuration to build modern web applications with sweet features as for example SCSS imports, Service Worker generation with Workbox, Karma testing, live reloading, coping resources, chunking, treeshaking, Typescript, license extraction, filesize visualizer, JSON import, budgets, build progress, minifying and compression with brotli a…
Stars: ✭ 17 (+0%)
Mutual labels:  rollup, rollup-plugin
rollup-plugin-userscript-metablock
Transform json file to userscript metablock and append on.
Stars: ✭ 26 (+52.94%)
Mutual labels:  rollup, rollup-plugin
rollup-plugin-lit-css
Moved to https://github.com/bennypowers/lit-css
Stars: ✭ 35 (+105.88%)
Mutual labels:  rollup, rollup-plugin
rollup-plugin-external-globals
Transform external imports into global variables like output.globals.
Stars: ✭ 57 (+235.29%)
Mutual labels:  rollup, rollup-plugin
bce.design
minimal magic, minimal tooling, essential dependencies, high productivity, no transpilations and no migrations. The Web Components starter ships with integrated lit-html, redux-toolkit and vaadin router components.
Stars: ✭ 67 (+294.12%)
Mutual labels:  rollup
cryptoformat
Javascript library to format and display cryptocurrency and money
Stars: ✭ 40 (+135.29%)
Mutual labels:  rollup
size-plugin-bot
A Github bot for size-plugin
Stars: ✭ 76 (+347.06%)
Mutual labels:  rollup
spot-the-bot
A cooperative WebVR game by Hook Studios. Checkout other WebVR experiments at https://webvrexperiments.com
Stars: ✭ 17 (+0%)
Mutual labels:  rollup
es6-sample-project
An ES6 sample project using Rollup, Bublé, Sass
Stars: ✭ 29 (+70.59%)
Mutual labels:  rollup

Rollup Plugin Collect Sass

CircleCI stability-stable

😴 Tired: minimalist 'lightweight' libraries

Wired: feature-rich compilers with lightweight output

Rich Harris, creator of Rollup

Why

Most methods for transforming Sass with Rollup operate on an individual file level. In JS, writing import './variables.scss' followed by import './header.scss' will create independent contexts for each file when compiled (variables defined in variables.scss will not be available in header.scss).

The common solution is to collect all Sass imports into a single Sass entrypoint (like index.scss), which is then imported once for Rollup. However, this solution is not ideal, because this second entrypoint must be kept in sync with the bundled components.

Instead, each component could import the exact Sass files it requires. This is especially useful for libraries, where modular components and CSS is desirable. To support this, two problems must be solved:

  • Import bloat (duplicate Sass imports in the final bundle)
  • Single context (variables defined in one import are not available in the next)

To this end, this plugin compiles Sass in two passes: It collects each Sass import (and resolves relative @import statements within the files), then does a second pass to compile all collected Sass to CSS, optionally deduplicating @import statements.

Features

  • Processes all Sass encountered by Rollup in a single context, in import order.
  • Supports node_modules resolution, following the same Sass file name resolution algorithm. Importing from, for example, bootstrap/scss/ Just Works™.
  • Optionally dedupes @import statements, including from node_modules. This prevents duplication of common imports shared by multiple components, promotes encapulation and allows modules to standalone if need be.
  • By default, inserts CSS in to <header>, although file output is supported as well with the extract option.

Installation

npm install rollup-plugin-collect-sass --save-dev

Usage

import collectSass from 'rollup-plugin-collect-sass'

export default {
    plugins: [
        collectSass({
            ...options
        }),
    ],
}

Options

importOnce

Boolean, if set to true, all Sass @import statements are deduped after absolute paths are resolved. Default: false to match default libsass/Ruby Sass behavior.

extensions

File extensions to include in the transformer. Default: ['.scss', '.sass']

include

minimatch glob pattern (or array) of files to include. Default: ['**/*.scss', '**/*.sass']

exclude

minimatch glob pattern (or array) of files to exclude.

extract

Either a boolean or a string path for the file to extract CSS output to. If boolean true, defaults to the same path as the JS output with .css extension. Default: false

If set to false, CSS is injected in to the header with JS.

extractPath

Another way to specify the output path. Ignored if extract is falsy.

License

Copyright (c) 2017 Nathan Cahill

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].