BlessCSS / bless

CSS Post-Processor
blesscss.com
MIT License
282 stars 60 forks source link

Small file is unexpectedly modified #90

Open adam-lynch opened 8 years ago

adam-lynch commented 8 years ago

I'm working on https://github.com/BlessCSS/gulp-bless/issues/15 and I've noticed the following:

Input:

p {color:red}"

Output:

p {
  color: red;
}

Is that correct?

mtscout6 commented 8 years ago

We are breaking out the source to an AST, splitting up that tree then doing general AST back to string representations. I'm sure there's got to be a way to retain that, but I'm not familiar with how at the moment.

adam-lynch commented 8 years ago

No problem :+1: