From c5e133117dff3e19b12401499776ca5cbdaeb9c8 Mon Sep 17 00:00:00 2001 From: Cleydyr de Albuquerque Date: Wed, 21 Feb 2024 15:04:13 +0100 Subject: [PATCH] docs: add linux musl as a supported release --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 52c76e3..fbdd028 100644 --- a/README.md +++ b/README.md @@ -41,12 +41,12 @@ A Maven plugin that allows to compile SASS using Dart Sass Dart Sass Maven Plugin will run on any operating systems and architectures available on the [Dart Sass releases page](https://github.com/sass/dart-sass/releases). As of now, they are: -| | Linux | Mac | Windows | -| ----- | ----- | --- | ------- | -| ia32 | ✅ | ❌ | ✅ | -| x64 | ✅ | ✅ | ✅ | -| arm64 | ✅ | ✅ | ❌ | -| arm | ✅ | ❌ | ❌ | +| | Linux | Mac | Windows | Linux (musl) | +| ----- | ----- | --- | ------- |--------------| +| ia32 | ✅ | ❌ | ✅ | ✅ | +| x64 | ✅ | ✅ | ✅ | ✅ | +| arm64 | ✅ | ✅ | ❌ | ✅ | +| arm | ✅ | ❌ | ❌ | ✅ | ## Automatic detection of operating system and architecture @@ -90,7 +90,7 @@ This parameter represents the Dart Sass architecture that should be used to comp `` -This parameter represents the Dart Sass operating system that should be used to compile Sass files. If left unset, it will be autodetected by the plugin. Accepted values are "linux", "macos" and "windows".
+This parameter represents the Dart Sass operating system that should be used to compile Sass files. If left unset, it will be autodetected by the plugin. Accepted values are "linux", "linux-musl", "macos" and "windows".
**Type**: String
**Required**: No