In my electron application, I am utilizing the npm module materialize-css
(version 0.100-2). Since npm modules are not git-tracked, I have made changes to the SASS components within the following files:
node_modules/
+-- materialize-css/
+-- sass/
materialize.scss <-- modifications
+-- components/
...
_color.scss <-- modifications
_variables.scss <-- modifications
_palette.css <-- new file I added
Following the instructions provided at , I have successfully compiled the updated materialize.css
in
node_modules/materialize-css/dist/css
.
As I plan to upgrade to version 1.0.0-beta and want to maintain my modifications within git, I am seeking advice or best practices on how to keep my changes separate from the original SASS files while still incorporating them during the CSS compilation process.