Skip to content

Commit 073e043

Browse files
chore(release): 2.0.0 [skip ci]
# [2.0.0](v1.0.0...v2.0.0) (2020-11-17) ### Bug Fixes * **babel:** add support for commonjs requires. ([56b0148](56b0148)) * **importer:** return null when the override file could not be found ([49bf9f9](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.
1 parent f87b8b3 commit 073e043

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
# [2.0.0](https://github.com/codebymikey/node-sass-conditional-importer/compare/v1.0.0...v2.0.0) (2020-11-17)
2+
3+
4+
### Bug Fixes
5+
6+
* **babel:** add support for commonjs requires. ([56b0148](https://github.com/codebymikey/node-sass-conditional-importer/commit/56b01481268c44a0dbb7a8b40125f0354ae6d0e9))
7+
* **importer:** return null when the override file could not be found ([49bf9f9](https://github.com/codebymikey/node-sass-conditional-importer/commit/49bf9f9744f8667adae74080bad951c624d0dc01))
8+
9+
10+
### BREAKING CHANGES
11+
12+
* **babel:** Existing imports will have to change from
13+
```
14+
const conditionalImporter = require('node-sass-conditional-importer').default;
15+
```
16+
to
17+
```
18+
const conditionalImporter = require('node-sass-conditional-importer');
19+
```
20+
* **importer:** existing behaviour might change if there were other importers being applied after
21+
this one.
22+
123
# 1.0.0 (2020-11-16)
224

325

0 commit comments

Comments
 (0)