Skip to content

Commit e3f8462

Browse files
committed
Update Dart Sass version and release
1 parent 91f382f commit e3f8462

File tree

18 files changed

+58
-34
lines changed

18 files changed

+58
-34
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
## 1.70.0
2+
3+
### JavaScript API
4+
5+
* Add a `sass.initCompiler()` function that returns a `sass.Compiler` object
6+
which supports `compile()` and `compileString()` methods with the same API as
7+
the global Sass object. On the Node.js embedded host, each `sass.Compiler`
8+
object uses a single long-lived subprocess, making compiling multiple
9+
stylesheets much more efficient.
10+
11+
* Add a `sass.initAsyncCompiler()` function that returns a `sass.AsyncCompiler`
12+
object which supports `compileAsync()` and `compileStringAsync()` methods with
13+
the same API as the global Sass object. On the Node.js embedded host, each
14+
`sass.AsynCompiler` object uses a single long-lived subprocess, making
15+
compiling multiple stylesheets much more efficient.
16+
17+
### Embedded Sass
18+
19+
* Support the `CompileRequest.silent` field. This allows compilations with no
20+
logging to avoid unnecessary request/response cycles.
21+
22+
* The Dart Sass embedded compiler now reports its name as "dart-sass" rather
23+
than "Dart Sass", to match the JS API's `info` field.
24+
125
## 1.69.7
226

327
### Embedded Sass

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.69.7",
3+
"version": "1.70.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.69.7",
3+
"version": "1.70.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.69.7",
3+
"version": "1.70.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.69.7",
3+
"version": "1.70.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.69.7",
3+
"version": "1.70.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.69.7",
3+
"version": "1.70.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.69.7",
3+
"version": "1.70.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.69.7",
3+
"version": "1.70.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.69.7",
3+
"version": "1.70.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)