sass / dart-sass

The reference implementation of Sass, written in Dart.
https://sass-lang.com/dart-sass
MIT License
3.9k stars 352 forks source link

ESM export of `NodePackageImporter` is missing. #2176

Closed jgerigmeyer closed 7 months ago

jgerigmeyer commented 7 months ago

It works fine in a CJS context, but the ESM build (sass.node.mjs) is missing the new NodePackageImporter class.

import { compile, NodePackageImporter } from 'sass';
                  ^^^^^^^^^^^^^^^^^^^
SyntaxError: The requested module 'sass' does not provide an export named 'NodePackageImporter'

PR incoming...