From a93eb1b7195c4010644c9830f16468e00abc07a6 Mon Sep 17 00:00:00 2001 From: Kazuya Takei Date: Sun, 28 Sep 2025 11:38:54 +0900 Subject: [PATCH 1/3] chore: Fetch dart-sass when setup rans --- Taskfile.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/Taskfile.yaml b/Taskfile.yaml index b485447..0c63086 100644 --- a/Taskfile.yaml +++ b/Taskfile.yaml @@ -9,6 +9,7 @@ tasks: desc: 'Setup workspace' cmds: - 'uv sync --frozen --all-extras --all-groups' + - '{{.RUN_PYTHON}} python -m sass_embedded.sass' - 'lefthook install' - task: 'docs:apidoc' verify: From ceb37c11983b17b8bdc76c380c33e17f1bd23ed5 Mon Sep 17 00:00:00 2001 From: Kazuya Takei Date: Sun, 28 Sep 2025 11:52:12 +0900 Subject: [PATCH 2/3] update: Use latest Dart Sass and Embed Protocol --- src/sass_embedded/_const.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sass_embedded/_const.py b/src/sass_embedded/_const.py index f425c4d..eed9a3a 100644 --- a/src/sass_embedded/_const.py +++ b/src/sass_embedded/_const.py @@ -1,7 +1,7 @@ """Constants to use internal of project.""" -DART_SASS_VERSION = "1.89.2" +DART_SASS_VERSION = "1.93.2" """Version of bundled Dart Sass.""" -EMBEDDED_PROTOCOL_VERSION = "3.1.0" +EMBEDDED_PROTOCOL_VERSION = "3.2.0" """Version of The Embedded Sass Protocol.""" From 039c56e5774dec00e311dab9501fbd7382e45ff4 Mon Sep 17 00:00:00 2001 From: Kazuya Takei Date: Sun, 28 Sep 2025 12:00:14 +0900 Subject: [PATCH 3/3] chore: Revert --- Taskfile.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Taskfile.yaml b/Taskfile.yaml index 0c63086..029f0b6 100644 --- a/Taskfile.yaml +++ b/Taskfile.yaml @@ -9,7 +9,8 @@ tasks: desc: 'Setup workspace' cmds: - 'uv sync --frozen --all-extras --all-groups' - - '{{.RUN_PYTHON}} python -m sass_embedded.sass' + # TODO: It may delete this line + # - '{{.RUN_PYTHON}} python -m sass_embedded.sass' - 'lefthook install' - task: 'docs:apidoc' verify: