Hi, I'm trying to generate a scss file for my icons instead of the standard css. It's because then I run other process over that file, and I need to use that format. Is it possible to use a scss template? How can I generate a scss output file?
My process generate the fonts files, and if I use a css template it runs ok, but not with scss.
I didn't realise I could use the same gulp-rename to edit the file extension. Now I use the css template, but I rename to scss and everything is working.
Hi, I'm trying to generate a scss file for my icons instead of the standard css. It's because then I run other process over that file, and I need to use that format. Is it possible to use a scss template? How can I generate a scss output file? My process generate the fonts files, and if I use a css template it runs ok, but not with scss.
This is my gulp process:
Thanks