We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b4d703 commit fd67fe6Copy full SHA for fd67fe6
CHANGELOG.md
@@ -1,3 +1,8 @@
1
+## 1.72.0
2
+
3
+* Allow the Node.js `pkg:` importer to load Sass stylesheets for `package.json`
4
+ `exports` field entries without extensions.
5
6
## 1.71.1
7
8
### Command-Line Interface
lib/src/importer/node_package.dart
@@ -354,6 +354,7 @@ class NodePackageImporter extends Importer {
354
paths.add(subpath);
355
} else {
356
paths.addAll([
357
+ subpath,
358
'$subpath.scss',
359
'$subpath.sass',
360
'$subpath.css',
pubspec.yaml
@@ -1,5 +1,5 @@
name: sass
-version: 1.71.1
+version: 1.72.0-dev
description: A Sass implementation in Dart.
homepage: https://github.com/sass/dart-sass
0 commit comments