-
-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Bump Prettier #18960
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bump Prettier #18960
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -496,7 +496,7 @@ test('Custom functional @utility', async () => { | |
|
||
@utility example-* { | ||
font-size: --value(--text); | ||
line-height: --value(--text- * --line-height); | ||
line-height: --value(--text-* --line-height); | ||
line-height: --modifier(--leading, 'normal'); | ||
} | ||
|
||
|
@@ -513,7 +513,7 @@ test('Custom functional @utility', async () => { | |
} | ||
|
||
@utility -negative-* { | ||
margin: --value(--tab-size- *); | ||
margin: --value(--tab-size-*); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is fixed which is nice |
||
} | ||
` | ||
|
||
|
@@ -585,7 +585,7 @@ test('Custom utilities sharing a root with built-in utilities should merge sugge | |
} | ||
|
||
@utility font-* { | ||
--my-font-weight: --value(--font-weight- *); | ||
--my-font-weight: --value(--font-weight-*); | ||
} | ||
` | ||
|
||
|
@@ -624,7 +624,7 @@ test('Theme keys with underscores are suggested with underscores', async () => { | |
} | ||
|
||
@utility ex-* { | ||
width: --value(--spacing- *); | ||
width: --value(--spacing-*); | ||
} | ||
` | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27897,7 +27897,7 @@ describe('custom utilities', () => { | |
test('resolving any arbitrary values', async () => { | ||
let input = css` | ||
@utility tab-* { | ||
tab-size: --value([ *]); | ||
tab-size: --value([*]); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is also fixed, which is also nice |
||
} | ||
|
||
@tailwind utilities; | ||
|
@@ -28355,7 +28355,7 @@ describe('custom utilities', () => { | |
|
||
@utility example-* { | ||
font-size: --value(--text); | ||
line-height: --value(--text- * --line-height); | ||
line-height: --value(--text-* --line-height); | ||
line-height: --modifier(number); | ||
} | ||
|
||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is better, but not really worse compared to before