How to get Chirpy to mash files when they are edited

I just started using Chirpy and it is amazing. One of the problems that I am facing is that I cannot get it to update the colorful files when editing is done in one of the β€œsub” files.

IE: If I have a file called "site.css" (via the js.chirp.config file) that contains "elements.css", "master.css", "misc.css", etc. And I do the editing for one of them (say master.css), I want chirpy to hit and remake site.css with new changes.

Is it possible?

+4
source share
2 answers

Chirpy does this - just make sure your paths use a backslash, not a slash.

<root> <FileGroup Name="site.css"> <File Path="css\elements.css" /> <File Path="css\master.css" /> <File Path="css\misc.css" /> </FileGroup> </root> 

Chirpur chirpa tweets tweets.

+4
source

I have

<Folder Pattern="*.min.css" Minify="false" />

And with this template there, it does not start when updating min.css files. I have to update the configuration and save for layout.

0
source

All Articles