-
-
Notifications
You must be signed in to change notification settings - Fork 7.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix docs generation locally on Windows. #34629
base: current
Are you sure you want to change the base?
Changes from all commits
8a09681
f4d35e9
cf971d8
1258dfc
bbc8909
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,8 +8,7 @@ group :development do | |
gem 'compass', '1.0.3' | ||
gem 'sass-globbing', '1.1.5' | ||
gem 'stringex', '2.8.6' | ||
# > 2.1.0 causes slowdowns https://github.com/sass/sassc-ruby/issues/189 | ||
gem 'sassc', '2.1.0' | ||
gem 'sassc', '2.4.0' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We cannot change this, as per the comment on the existing code. See: sass/sassc-ruby#189 If this is problematic for Windows, I think it is better to start documenting you cannot use this on Windows. ../Frenck There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Oh, I completely misread the purpose of that comment! I'll try to sort this out with the older version - see if there's some other way to make that gem compatible to be installed at 2.1.0 |
||
gem 'rubocop', '1.66.1' | ||
gem 'ruby-lsp', '0.18.3' | ||
gem 'rackup', '2.1.0' | ||
|
@@ -33,4 +32,4 @@ install_if -> { RUBY_PLATFORM =~ %r!mingw|mswin|java! } do | |
end | ||
|
||
# Performance-booster for watching directories on Windows | ||
gem "wdm", "~> 0.1.0" if Gem.win_platform? | ||
gem "wdm", "~> 0.2.0" if Gem.win_platform? | ||
Sergeus marked this conversation as resolved.
Show resolved
Hide resolved
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Approve version update but recommend sorting gems alphabetically.
The update of
sassc
from2.1.0
to2.4.0
is crucial for resolving compatibility issues and should be approved. However, to adhere to best practices and maintain consistency within the Gemfile, it's recommended to sort the gems alphabetically within their section as suggested by rubocop.Consider rearranging the gems to maintain alphabetical order:
Committable suggestion
Tools
rubocop