1.0.0 • Published 3 years ago

sass-module-map v1.0.0

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

sass-module-map

Release Version License

This Sass module provides more advanced map functions.

Install

Requires

  • Dart Sass: >=1.33.0

Install the package:

npm install sass-module-map

Use the package like any other Sass module:

@use 'sass-module-map';

Depending on your setup, you may need to configure node_modules as include path:

const sass = require('sass');

sass.render({
  file: scss_filename,
  includePaths: ['node_modules']
});

Public API

Functions

Don't see the function you're looking for? Request a new feature describing a use case.

Comparison Functions

Combined API

In order to avoid constantly declaring both the native 'sass:map' module and this library, the combined API has been added which merges the two.

// Rather than using both modules separately...
@use 'sass-module-map';
@use 'sass:map';

// ...this statement will accomplish the same thing.
@use 'sass-module-map/map';