Skip to content

Commit 6944074

Browse files
committed
Update Dart Sass version and release
1 parent 5e2abf5 commit 6944074

File tree

18 files changed

+67
-34
lines changed

18 files changed

+67
-34
lines changed

CHANGELOG.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,36 @@
1+
## 1.71.0
2+
3+
For more information about `pkg:` importers, see [the
4+
announcement][pkg-importers] on the Sass blog.
5+
6+
[pkg-importers]: https://sass-lang.com/blog/announcing-pkg-importers
7+
8+
### Command-Line Interface
9+
10+
* Add a `--pkg-importer` flag to enable built-in `pkg:` importers. Currently
11+
this only supports the Node.js package resolution algorithm, via
12+
`--pkg-importer=node`. For example, `@use "pkg:bootstrap"` will load
13+
`node_modules/bootstrap/scss/bootstrap.scss`.
14+
15+
### JavaScript API
16+
17+
* Add a `NodePackageImporter` importer that can be passed to the `importers`
18+
option. This loads files using the `pkg:` URL scheme according to the Node.js
19+
package resolution algorithm. For example, `@use "pkg:bootstrap"` will load
20+
`node_modules/bootstrap/scss/bootstrap.scss`. The constructor takes a single
21+
optional argument, which indicates the base directory to use when locating
22+
`node_modules` directories. It defaults to
23+
`path.dirname(require.main.filename)`.
24+
25+
### Dart API
26+
27+
* Add a `NodePackageImporter` importer that can be passed to the `importers`
28+
option. This loads files using the `pkg:` URL scheme according to the Node.js
29+
package resolution algorithm. For example, `@use "pkg:bootstrap"` will load
30+
`node_modules/bootstrap/scss/bootstrap.scss`. The constructor takes a single
31+
argument, which indicates the base directory to use when locating
32+
`node_modules` directories.
33+
134
## 1.70.0
235

336
### JavaScript API

npm/android-arm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sass-embedded-android-arm",
3-
"version": "1.70.0",
3+
"version": "1.71.0",
44
"description": "The android-arm binary for sass-embedded",
55
"repository": "sass/embedded-host-node",
66
"author": "Google Inc.",

npm/android-arm64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sass-embedded-android-arm64",
3-
"version": "1.70.0",
3+
"version": "1.71.0",
44
"description": "The android-arm64 binary for sass-embedded",
55
"repository": "sass/embedded-host-node",
66
"author": "Google Inc.",

npm/android-ia32/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sass-embedded-android-ia32",
3-
"version": "1.70.0",
3+
"version": "1.71.0",
44
"description": "The android-ia32 binary for sass-embedded",
55
"repository": "sass/embedded-host-node",
66
"author": "Google Inc.",

npm/android-x64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sass-embedded-android-x64",
3-
"version": "1.70.0",
3+
"version": "1.71.0",
44
"description": "The android-x64 binary for sass-embedded",
55
"repository": "sass/embedded-host-node",
66
"author": "Google Inc.",

npm/darwin-arm64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sass-embedded-darwin-arm64",
3-
"version": "1.70.0",
3+
"version": "1.71.0",
44
"description": "The darwin-arm64 binary for sass-embedded",
55
"repository": "sass/embedded-host-node",
66
"author": "Google Inc.",

npm/darwin-x64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sass-embedded-darwin-x64",
3-
"version": "1.70.0",
3+
"version": "1.71.0",
44
"description": "The darwin-x64 binary for sass-embedded",
55
"repository": "sass/embedded-host-node",
66
"author": "Google Inc.",

npm/linux-arm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sass-embedded-linux-arm",
3-
"version": "1.70.0",
3+
"version": "1.71.0",
44
"description": "The linux-arm binary for sass-embedded",
55
"repository": "sass/embedded-host-node",
66
"author": "Google Inc.",

npm/linux-arm64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sass-embedded-linux-arm64",
3-
"version": "1.70.0",
3+
"version": "1.71.0",
44
"description": "The linux-arm64 binary for sass-embedded",
55
"repository": "sass/embedded-host-node",
66
"author": "Google Inc.",

npm/linux-ia32/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sass-embedded-linux-ia32",
3-
"version": "1.70.0",
3+
"version": "1.71.0",
44
"description": "The linux-ia32 binary for sass-embedded",
55
"repository": "sass/embedded-host-node",
66
"author": "Google Inc.",

0 commit comments

Comments
 (0)