From 97432d4bd7565c5efbfdd279bec7eccc2abd38d9 Mon Sep 17 00:00:00 2001 From: davidgisbey Date: Mon, 22 Jan 2024 19:37:48 +0000 Subject: [PATCH] Ensure Dart Sass is built on precompile When i deployed this out to integration for testing it didn't seem to running Dass Sart's build command when running assets precompile. This resolves the issue. --- lib/tasks/assets.rake | 1 + 1 file changed, 1 insertion(+) create mode 100644 lib/tasks/assets.rake diff --git a/lib/tasks/assets.rake b/lib/tasks/assets.rake new file mode 100644 index 00000000..eb1c5561 --- /dev/null +++ b/lib/tasks/assets.rake @@ -0,0 +1 @@ +Rake::Task["assets:precompile"].enhance(["dartsass:build"])