-
Notifications
You must be signed in to change notification settings - Fork 294
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
[BAH-4150] Replace Compass with Grunt-SASS for SASS Compilation #1027
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
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. @ayazurrehman During the validation of this PR, we observed the following warning appearing multiple times when running the
This warning indicates that the Could you look into these warnings and update the relevant Sass files accordingly? Addressing this will ensure a more seamless and future-proof build process. Let us know if you need any guidance or assistance in resolving this. |
Large diffs are not rendered by default.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Large diffs are not rendered by default.
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. I encountered an issue while testing the new Although there is a deprecation warning related to the usage of Below are my system specifications for reference:
Could you investigate this issue and identify the potential cause? Let us know if any additional details are needed to troubleshoot this further. Thank you! |
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Large diffs are not rendered by default.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -71,7 +71,6 @@ | |
"grunt": "^1.0.3", | ||
"grunt-comment-toggler": "^0.2.2", | ||
"grunt-contrib-clean": "2.0.0", | ||
"grunt-contrib-compass": "1.1.1", | ||
"grunt-contrib-concat": "1.0.1", | ||
"grunt-contrib-copy": "1.0.0", | ||
"grunt-contrib-cssmin": "~1.0.0", | ||
|
@@ -87,6 +86,7 @@ | |
"grunt-ng-annotate": "^3.0.0", | ||
"grunt-preprocess": "^5.0.1", | ||
"grunt-rename": "~0.1.3", | ||
"grunt-sass": "^3.1.0", | ||
"grunt-usemin": "~3.1.1", | ||
"karma": "^4.0.0", | ||
"karma-chrome-launcher": "^2.2.0", | ||
|
@@ -97,7 +97,8 @@ | |
"karma-ng-html2js-preprocessor": "^1.0.0", | ||
"matchdep": "^2.0.0", | ||
"react": "16.14.0", | ||
"react-dom": "16.14.0" | ||
"react-dom": "16.14.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. With Compass now replaced by Grunt-Sass, could you please update the README with the relevant steps to build the UI? The issues I encountered during testing might have resulted from a missing step or a mistake during the build process. Providing updated and accurate build instructions will help streamline the review process and ensure a more efficient validation of the changes. Kindly address this at the earliest. Thank you! |
||
"sass": "^1.32.8" | ||
}, | ||
"resolutions": { | ||
"**/**/xmlhttprequest-ssl": "^1.6.1", | ||
|
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.
@ayazurrehman It seems there is an ESLint error in your Gruntfile.js at line 15 due to multiple consecutive blank lines, which violates the
no-multiple-empty-lines
rule. This rule enforces that there should not be more than one blank line in the code for better readability and consistency.To fix this error, you can remove the extra blank line(s) present after line 15.
I also noticed that this might have been added intentionally. Could you explain the reasoning behind this decision? If the blank lines serve a specific purpose, let us know so we can determine the best approach to resolve this issue without affecting the code's intent.