This MR contains the following updates:
Package | Type | Update | Change |
---|---|---|---|
sass | dependencies | minor | 1.70.0 -> 1.71.1 |
v1.71.1
Export the NodePackageImporter
class in ESM mode.
Allow NodePackageImporter
to locate a default directory even when the
entrypoint is an ESM module.
NodePackageImporter()
a static error rather
than just a runtime error.v1.71.0
For more information about pkg:
importers, see the
announcement on the Sass blog.
--pkg-importer
flag to enable built-in pkg:
importers. Currently
this only supports the Node.js package resolution algorithm, via
--pkg-importer=node
. For example, @use "pkg:bootstrap"
will load
node_modules/bootstrap/scss/bootstrap.scss
.NodePackageImporter
importer that can be passed to the importers
option. This loads files using the pkg:
URL scheme according to the Node.js
package resolution algorithm. For example, @use "pkg:bootstrap"
will load
node_modules/bootstrap/scss/bootstrap.scss
. The constructor takes a single
optional argument, which indicates the base directory to use when locating
node_modules
directories. It defaults to
path.dirname(require.main.filename)
.NodePackageImporter
importer that can be passed to the importers
option. This loads files using the pkg:
URL scheme according to the Node.js
package resolution algorithm. For example, @use "pkg:bootstrap"
will load
node_modules/bootstrap/scss/bootstrap.scss
. The constructor takes a single
argument, which indicates the base directory to use when locating
node_modules
directories.This MR has been generated by Renovate Bot.