node-sass-yaml-importer

7.0.0 • Public • Published

node-sass-yaml-importer

Tests Version on npm

YAML importer for sass (originally for the now deprecated node-sass, hence the package name).

This allows @importing/@useing .yml files (and .json files, since that's a subset of YAML) in Sass files parsed by sass.

This is a fork of the node-sass-json-importer repository, adjusted for usage with YAML.

Setup

sass

This module hooks into sass' importer api.

const sass = require('sass');
const yamlImporter = require('node-sass-yaml-importer');

// Example 1
sass.render({
  file: scss_filename,
  importer: yamlImporter,
  // ...options
}, (err, result) => { /*...*/ });

// Example 2
const result = sass.renderSync({
  data: scss_content
  importer: [yamlImporter, someOtherImporter]
  // ...options
});

Webpack / sass-loader

Webpack v1

import yamlImporter from 'node-sass-yaml-importer'

// Webpack config
export default {
  module: {
    loaders: [
      {
        test: /\.scss$/,
        loaders: ['style', 'css', 'sass']
      }
    ]
  },
  // Apply the YAML importer via sass-loader's options.
  sassLoader: {
    importer: yamlImporter
  }
}

Webpack v2 and upwards

import yamlImporter from 'node-sass-yaml-importer';

// Webpack config
export default {
  module: {
    rules: [
      test: /\.scss$/,
      use: [
        'style-loader',
        {
          loader: 'css-loader',
          options: {
            importLoaders: 1
          },
        },
        {
          loader: 'sass-loader',
          // Apply the YAML importer via sass-loader's options.
          options: {
            importer: yamlImporter,
          },
        },
      ],
    ],
  },
};

Usage

Given the following colors.yml file:

primary: blue
secondary: red

The importer allows your Sass file in the same folder to do this:

@import 'colors.yml';

.some-class {
  background: $primary;
}

Note that @import is somewhat deprecated and you should use @use instead:

@use 'colors.yml';

.some-class {
  // Data is automatically namespaced:
  background: colors.$primary;
}

To achieve the same behavior as with @import, you can change the namespace to *:

@use 'colors.yml' as *;

.some-class {
  // Colors are no longer namespaced:
  background: $primary;
}

Importing strings

As YAML values don't map directly to Sass's data types, a common source of confusion is how to handle strings. While Sass allows strings to be both quoted and unqouted, strings containing spaces, commas and/or other special characters have to be wrapped in quotes.

Since version 7 of this package, the importer will automatically add quotes around all strings that are not valid unquoted strings or hex colors (and that are not already quoted, of course):

Input Output Explanation
color: red
color: "red"
↑ Equivalent YAML expressions
$color: red; Valid unquoted string
color: "#f00" $color: #f00; Valid hex color
color: "'red'" $color: "red"; Explicitly quoted string
color: "really red" $color: "really red"; Valid unquoted string

Importing objects

Since version 6 of this package, all map keys are quoted:

# colors.yml
colors:
  red: '#f00'
@use 'colors.yml' as *;

:root {
  // This no longer works:
  color: map-get($colors, red);

  // Do this instead:
  color: map-get($colors, 'red');
}

Credit

The initial implementation of this importer was based on the node-sass-json-importer package.

Package Sidebar

Install

npm i node-sass-yaml-importer

Weekly Downloads

2,054

Version

7.0.0

License

MIT

Unpacked Size

10.3 kB

Total Files

4

Last publish

Collaborators

  • loilo