Skip to content

v2.0.0

Compare
Choose a tag to compare
@github-actions github-actions released this 17 Nov 23:13
· 3 commits to master since this release

2.0.0 (2020-11-17)

Bug Fixes

  • babel: add support for commonjs requires. (56b0148)
  • importer: return null when the override file could not be found (49bf9f9)

BREAKING CHANGES

  • babel: Existing imports will have to change from
const conditionalImporter = require('node-sass-conditional-importer').default;

to

const conditionalImporter = require('node-sass-conditional-importer');
  • importer: existing behaviour might change if there were other importers being applied after
    this one.