We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ed1276 commit 15d8471Copy full SHA for 15d8471
lib/tasks/cssbundling/build.rake
@@ -1,7 +1,7 @@
1
namespace :css do
2
desc "Build your CSS bundle"
3
- task :build do
4
- unless system "yarn install && yarn build:css"
+ task build: [ "yarn:install" ] do
+ unless system "yarn build:css"
5
raise "cssbundling-rails: Command css:build failed, ensure yarn is installed and `yarn build:css` runs without errors"
6
end
7
0 commit comments