Skip to content

Commit 93d1af1

Browse files
Bump known-css-properties from 0.36.0 to 0.37.0 (#8619)
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Richard Hallows <jeddy3@users.noreply.github.com>
1 parent 879baf5 commit 93d1af1

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

lib/rules/property-no-unknown/__tests__/index.mjs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -328,8 +328,8 @@ testRule({
328328
message: messages.rejected('colr'),
329329
},
330330
{
331-
code: 'css`\n\trule: 1;\n`;',
332-
message: messages.rejected('rule'),
331+
code: 'css`\n\tunknown: 1;\n`;',
332+
message: messages.rejected('unknown'),
333333
},
334334
],
335335
});
@@ -341,20 +341,20 @@ testRule({
341341

342342
accept: [
343343
{
344-
code: '<a style="{{rule}}: 1">',
344+
code: '<a style="{{unknown}}: 1">',
345345
},
346346
],
347347

348348
reject: [
349349
{
350-
code: '<a style="rule: 1">',
351-
message: messages.rejected('rule'),
350+
code: '<a style="unknown: 1">',
351+
message: messages.rejected('unknown'),
352352
line: 1,
353353
column: 11,
354354
},
355355
{
356-
code: '<a style="rule: {{1}}">',
357-
message: messages.rejected('rule'),
356+
code: '<a style="unknown: {{1}}">',
357+
message: messages.rejected('unknown'),
358358
line: 1,
359359
column: 11,
360360
},

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
@@ -152,7 +152,7 @@
152152
"ignore": "^7.0.5",
153153
"imurmurhash": "^0.1.4",
154154
"is-plain-object": "^5.0.0",
155-
"known-css-properties": "^0.36.0",
155+
"known-css-properties": "^0.37.0",
156156
"mathml-tag-names": "^2.1.3",
157157
"meow": "^13.2.0",
158158
"micromatch": "^4.0.8",

0 commit comments

Comments
 (0)