Skip dartsass:build if environment variable SKIP_CSS_BUILD
is set.
#51
+7
−5
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hello,
dartsass-rails gem currently runs
dartsass:build
automatically duringassets:precompile
.This behavior is enforced by the code here:
dartsass-rails/lib/tasks/build.rake
Line 35 in d227ae6
However, in some scenarios, it's beneficial to run
dartsass:build
andassets:precompile
separately.For example, the cssbundling-rails gem offers a way to skip its build process during
assets:precompile
by setting an environment variableSKIP_CSS_BUILD
, as introduced by rails/cssbundling-rails#99.To align dartsass-rails with this approach, I suggest a similar feature.