We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28ad9e1 commit ff934d8Copy full SHA for ff934d8
ext/sass/Rakefile
@@ -64,15 +64,17 @@ file 'node_modules/sass' do
64
# TODO: remove after https://github.com/sass/dart-sass/pull/2413
65
cp File.absolute_path("sass-#{SassConfig.dart_sass_version}.tgz", __dir__), './'
66
67
- sh 'npm', 'install'
68
-rescue StandardError
69
begin
70
- sh 'yarn', 'install'
+ sh 'npm', 'install'
71
rescue StandardError
72
73
- sh 'pnpm', 'install'
+ sh 'yarn', 'install'
74
75
- sh 'bun', 'install'
+ begin
+ sh 'pnpm', 'install'
+ rescue StandardError
76
+ sh 'bun', 'install'
77
+ end
78
end
79
80
0 commit comments