YUI-CSS-compressor-PHP-port icon indicating copy to clipboard operation
YUI-CSS-compressor-PHP-port copied to clipboard

Keep important comments feature doesn't work for comments inside declaration block

Open denistrator opened this issue 5 years ago • 0 comments

Input

/* test */
/*! test */
.test {
    /* test */
    /*! test */
    color: #111;
    background-color: #fff;
}

Expected output

/*! test */
.test{/*! test */ color:#111;background-color:#fff}

Actual output

/*! test */
.test{color:#111;background-color:#fff}

denistrator avatar Aug 16 '20 15:08 denistrator