0.2.0 • Published 3 years ago

@deskeen/web-builder-inline-sass v0.2.0

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

Web Builder Module - Inline SASS files

This module allows the @deskeen/web-builder engine to inline CSS/SASS files.

It uses dart-sass under the hood to parse and minify the text.

Install

npm install @deskeen/web-builder
npm install @deskeen/web-builder-inline-sass

Usage

And add the module to the list of modules:

const builder = require('@deskeen/web-builder')
await builder.build({
  source: [
    // List of files or directories that include
    // {{inlineSASS:file.scss}} tags
  ],
  modules: [
    [
      '@deskeen/web-builder-inline-sass',
      {
        assets: [
          // List of directories that contain
          // the sass files included in the tags
        ],
        sassOptions: {
          // See https://github.com/sass/dart-sass
          // for a complete list of options
        },
        // Minify output
        // Same as option: outputStyle='compressed'
        minify: true,
      }
    ]
  ]
})

Contact

You can reach me at {my_firstname}@{my_name}.fr

Licence

MIT Licence - Copyright (c) Morgan Schmiedt

0.2.0

3 years ago

0.1.0

4 years ago