Skip to content

Commit 5caba1b

Browse files
authored
Update clean-css to v5.3 (#150)
1 parent 9e1d8e5 commit 5caba1b

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
},
7676
"dependencies": {
7777
"camel-case": "^4.1.2",
78-
"clean-css": "5.2.0",
78+
"clean-css": "~5.3.2",
7979
"commander": "^9.4.1",
8080
"entities": "^4.4.0",
8181
"param-case": "^3.0.4",

tests/minifier.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3426,7 +3426,7 @@ test('decode entity characters', async () => {
34263426
output = '<div style="font:&quot">foo&dollar;</div>';
34273427
expect(await minify(input, { minifyCSS: true })).toBe(output);
34283428
expect(await minify(input, { decodeEntities: false, minifyCSS: true })).toBe(output);
3429-
output = '<div style="font:monospace">foo$</div>';
3429+
output = '<div style=\'font:"monospace"\'>foo$</div>';
34303430
expect(await minify(input, { decodeEntities: true, minifyCSS: true })).toBe(output);
34313431

34323432
input = '<a href="/?foo=1&amp;bar=&lt;2&gt;">baz&lt;moo&gt;&copy;</a>';

0 commit comments

Comments
 (0)