We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 137ba28 commit d14c785Copy full SHA for d14c785
CHANGELOG.md
@@ -1,5 +1,10 @@
1
# CHANGELOG
2
3
+## v0.5.0
4
+
5
+- Support upstream arm64 binaries
6
+- Update Sass version to `1.49.11`
7
8
## v0.4.0 (2022-01-19)
9
10
- Update Sass version to `1.49.0`
lib/dart_sass.ex
@@ -325,6 +325,7 @@ defmodule DartSass do
325
arch_str = :erlang.system_info(:system_architecture)
326
[arch | _] = arch_str |> List.to_string() |> String.split("-")
327
328
+ # TODO: remove "arm" when we require OTP 24
329
case arch do
330
"amd64" -> "#{platform}-x64"
331
"aarch64" -> "#{platform}-arm64"
0 commit comments