File tree Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " sass-embedded" ,
3
- "version" : " 1.49.9 " ,
3
+ "version" : " 1.49.11-dev " ,
4
4
"protocol-version" : " 1.0.0" ,
5
5
"compiler-version" : " 1.49.9" ,
6
6
"description" : " Node.js library that communicates with Embedded Dart Sass using the Embedded Sass protocol" ,
Original file line number Diff line number Diff line change @@ -30,19 +30,16 @@ const OS: 'linux' | 'macos' | 'windows' = (() => {
30
30
31
31
// The current platform's architecture. Throws if the architecture is not
32
32
// supported by Dart Sass Embedded.
33
- const ARCH : 'ia32' | 'x64' = ( ( ) => {
33
+ const ARCH : 'ia32' | 'x64' | 'arm64' = ( ( ) => {
34
34
switch ( process . arch ) {
35
35
case 'ia32' :
36
36
return 'ia32' ;
37
37
case 'x86' :
38
38
return 'ia32' ;
39
39
case 'x64' :
40
40
return 'x64' ;
41
- // TODO: This is blocked until Github Actions supports compiling Dart Sass
42
- // for arm64. Until then, download the x64 binary for arm64 users.
43
- // https://github.com/sass/dart-sass/issues/1125
44
41
case 'arm64' :
45
- return 'x64 ' ;
42
+ return 'arm64 ' ;
46
43
default :
47
44
throw Error ( `Architecure ${ process . arch } is not supported.` ) ;
48
45
}
You can’t perform that action at this time.
0 commit comments