Skip to content

Commit 2b1f4ec

Browse files
committed
Update Dart Sass version and release
1 parent 786ab6c commit 2b1f4ec

File tree

10 files changed

+44
-18
lines changed

10 files changed

+44
-18
lines changed

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
## 1.64.0
2+
3+
* Comments that appear before or between `@use` and `@forward` rules are now
4+
emitted in source order as much as possible, instead of always being emitted
5+
after the CSS of all module dependencies.
6+
7+
* Fix a bug where an interpolation in a custom property name crashed if the file
8+
was loaded by a `@use` nested in an `@import`.
9+
10+
### JavaScript API
11+
12+
* Add a new `SassCalculation` type that represents the calculation objects added
13+
in Dart Sass 1.40.0.
14+
15+
* Add `Value.assertCalculation()`, which returns the value if it's a
16+
`SassCalculation` and throws an error otherwise.
17+
18+
* Produce a better error message when an environment that supports some Node.js
19+
APIs loads the browser entrypoint but attempts to access the filesystem.
20+
21+
### Embedded Sass
22+
23+
* Fix a bug where nested relative `@imports` failed to load when using the
24+
deprecated functions `render` or `renderSync` and those relative imports were
25+
loaded multiple times across different files.
26+
127
## 1.63.6
228

329
### JavaScript API

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.63.6",
3+
"version": "1.64.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.63.6",
3+
"version": "1.64.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.63.6",
3+
"version": "1.64.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.63.6",
3+
"version": "1.64.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.63.6",
3+
"version": "1.64.0",
44
"description": "The linux-ia32 binary for sass-embedded",
55
"repository": "sass/embedded-host-node",
66
"author": "Google Inc.",

npm/linux-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-linux-x64",
3-
"version": "1.63.6",
3+
"version": "1.64.0",
44
"description": "The linux-x64 binary for sass-embedded",
55
"repository": "sass/embedded-host-node",
66
"author": "Google Inc.",

npm/win32-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-win32-ia32",
3-
"version": "1.63.6",
3+
"version": "1.64.0",
44
"description": "The win32-ia32 binary for sass-embedded",
55
"repository": "sass/embedded-host-node",
66
"author": "Google Inc.",

npm/win32-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-win32-x64",
3-
"version": "1.63.6",
3+
"version": "1.64.0",
44
"description": "The win32-x64 binary for sass-embedded",
55
"repository": "sass/embedded-host-node",
66
"author": "Google Inc.",

package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "sass-embedded",
3-
"version": "1.63.6",
3+
"version": "1.64.0",
44
"protocol-version": "2.1.0",
5-
"compiler-version": "1.63.6",
5+
"compiler-version": "1.64.0",
66
"description": "Node.js library that communicates with Embedded Dart Sass using the Embedded Sass protocol",
77
"repository": "sass/embedded-host-node",
88
"author": "Google Inc.",
@@ -31,14 +31,14 @@
3131
"test": "jest"
3232
},
3333
"optionalDependencies": {
34-
"sass-embedded-darwin-arm64": "1.63.6",
35-
"sass-embedded-darwin-x64": "1.63.6",
36-
"sass-embedded-linux-arm": "1.63.6",
37-
"sass-embedded-linux-arm64": "1.63.6",
38-
"sass-embedded-linux-ia32": "1.63.6",
39-
"sass-embedded-linux-x64": "1.63.6",
40-
"sass-embedded-win32-ia32": "1.63.6",
41-
"sass-embedded-win32-x64": "1.63.6"
34+
"sass-embedded-darwin-arm64": "1.64.0",
35+
"sass-embedded-darwin-x64": "1.64.0",
36+
"sass-embedded-linux-arm": "1.64.0",
37+
"sass-embedded-linux-arm64": "1.64.0",
38+
"sass-embedded-linux-ia32": "1.64.0",
39+
"sass-embedded-linux-x64": "1.64.0",
40+
"sass-embedded-win32-ia32": "1.64.0",
41+
"sass-embedded-win32-x64": "1.64.0"
4242
},
4343
"dependencies": {
4444
"@bufbuild/protobuf": "^1.0.0",

0 commit comments

Comments
 (0)