Skip to content

Commit

Permalink
Update Dart Sass version and release
Browse files Browse the repository at this point in the history
  • Loading branch information
sassbot committed Jul 20, 2023
1 parent 786ab6c commit 2b1f4ec
Show file tree
Hide file tree
Showing 10 changed files with 44 additions and 18 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,29 @@
## 1.64.0

* Comments that appear before or between `@use` and `@forward` rules are now
emitted in source order as much as possible, instead of always being emitted
after the CSS of all module dependencies.

* Fix a bug where an interpolation in a custom property name crashed if the file
was loaded by a `@use` nested in an `@import`.

### JavaScript API

* Add a new `SassCalculation` type that represents the calculation objects added
in Dart Sass 1.40.0.

* Add `Value.assertCalculation()`, which returns the value if it's a
`SassCalculation` and throws an error otherwise.

* Produce a better error message when an environment that supports some Node.js
APIs loads the browser entrypoint but attempts to access the filesystem.

### Embedded Sass

* Fix a bug where nested relative `@imports` failed to load when using the
deprecated functions `render` or `renderSync` and those relative imports were
loaded multiple times across different files.

## 1.63.6

### JavaScript API
Expand Down
2 changes: 1 addition & 1 deletion npm/darwin-arm64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sass-embedded-darwin-arm64",
"version": "1.63.6",
"version": "1.64.0",
"description": "The darwin-arm64 binary for sass-embedded",
"repository": "sass/embedded-host-node",
"author": "Google Inc.",
Expand Down
2 changes: 1 addition & 1 deletion npm/darwin-x64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sass-embedded-darwin-x64",
"version": "1.63.6",
"version": "1.64.0",
"description": "The darwin-x64 binary for sass-embedded",
"repository": "sass/embedded-host-node",
"author": "Google Inc.",
Expand Down
2 changes: 1 addition & 1 deletion npm/linux-arm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sass-embedded-linux-arm",
"version": "1.63.6",
"version": "1.64.0",
"description": "The linux-arm binary for sass-embedded",
"repository": "sass/embedded-host-node",
"author": "Google Inc.",
Expand Down
2 changes: 1 addition & 1 deletion npm/linux-arm64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sass-embedded-linux-arm64",
"version": "1.63.6",
"version": "1.64.0",
"description": "The linux-arm64 binary for sass-embedded",
"repository": "sass/embedded-host-node",
"author": "Google Inc.",
Expand Down
2 changes: 1 addition & 1 deletion npm/linux-ia32/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sass-embedded-linux-ia32",
"version": "1.63.6",
"version": "1.64.0",
"description": "The linux-ia32 binary for sass-embedded",
"repository": "sass/embedded-host-node",
"author": "Google Inc.",
Expand Down
2 changes: 1 addition & 1 deletion npm/linux-x64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sass-embedded-linux-x64",
"version": "1.63.6",
"version": "1.64.0",
"description": "The linux-x64 binary for sass-embedded",
"repository": "sass/embedded-host-node",
"author": "Google Inc.",
Expand Down
2 changes: 1 addition & 1 deletion npm/win32-ia32/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sass-embedded-win32-ia32",
"version": "1.63.6",
"version": "1.64.0",
"description": "The win32-ia32 binary for sass-embedded",
"repository": "sass/embedded-host-node",
"author": "Google Inc.",
Expand Down
2 changes: 1 addition & 1 deletion npm/win32-x64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sass-embedded-win32-x64",
"version": "1.63.6",
"version": "1.64.0",
"description": "The win32-x64 binary for sass-embedded",
"repository": "sass/embedded-host-node",
"author": "Google Inc.",
Expand Down
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "sass-embedded",
"version": "1.63.6",
"version": "1.64.0",
"protocol-version": "2.1.0",
"compiler-version": "1.63.6",
"compiler-version": "1.64.0",
"description": "Node.js library that communicates with Embedded Dart Sass using the Embedded Sass protocol",
"repository": "sass/embedded-host-node",
"author": "Google Inc.",
Expand Down Expand Up @@ -31,14 +31,14 @@
"test": "jest"
},
"optionalDependencies": {
"sass-embedded-darwin-arm64": "1.63.6",
"sass-embedded-darwin-x64": "1.63.6",
"sass-embedded-linux-arm": "1.63.6",
"sass-embedded-linux-arm64": "1.63.6",
"sass-embedded-linux-ia32": "1.63.6",
"sass-embedded-linux-x64": "1.63.6",
"sass-embedded-win32-ia32": "1.63.6",
"sass-embedded-win32-x64": "1.63.6"
"sass-embedded-darwin-arm64": "1.64.0",
"sass-embedded-darwin-x64": "1.64.0",
"sass-embedded-linux-arm": "1.64.0",
"sass-embedded-linux-arm64": "1.64.0",
"sass-embedded-linux-ia32": "1.64.0",
"sass-embedded-linux-x64": "1.64.0",
"sass-embedded-win32-ia32": "1.64.0",
"sass-embedded-win32-x64": "1.64.0"
},
"dependencies": {
"@bufbuild/protobuf": "^1.0.0",
Expand Down

0 comments on commit 2b1f4ec

Please sign in to comment.