I'm using the npm module of materialize-css (0.100-2) in an electron application. Npm modules are not tracked in git. I have made changes to the SASS components, specifically these files:
node_modules/
+-- materialize-css/
+-- sass/
materialize.scss <-- changes
+-- components/
...
_color.scss <-- changes
_variables.scss <-- changes
_palette.css <-- new file I added
I've compiled the new materialize.css in node_modules/materialize-css/dist/css using the instructions found here: http://materializecss.com/getting-started.html and everything works well.
However, I'm planning to upgrade to 1.0.0-beta and need to keep my modifications in git. Any ideas or best practices on how to keep my modifications separate from the SASS files but still include them when compiling the CSS?