Skip to content

Commit 33c8609

Browse files
committed
add missing .
1 parent 0ca2deb commit 33c8609

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: packages/tailwindcss/src/utilities.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -23199,7 +23199,7 @@ describe('custom utilities', () => {
2319923199
[
2320023200
[
2320123201
"Unsupported bare value data type: "color".
23202-
Only valid data types are: "number", "integer", "ratio", "percentage"
23202+
Only valid data types are: "number", "integer", "ratio", "percentage".
2320323203
",
2320423204
],
2320523205
[

Diff for: packages/tailwindcss/src/utilities.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5761,7 +5761,7 @@ export function createCssUtility(node: AtRule) {
57615761
!BARE_VALUE_DATA_TYPES.includes(node.value)
57625762
) {
57635763
console.warn(
5764-
`Unsupported bare value data type: "${node.value}".\nOnly valid data types are: ${BARE_VALUE_DATA_TYPES.map((x) => `"${x}"`).join(', ')}\n`,
5764+
`Unsupported bare value data type: "${node.value}".\nOnly valid data types are: ${BARE_VALUE_DATA_TYPES.map((x) => `"${x}"`).join(', ')}.\n`,
57655765
)
57665766
// TODO: Once we properly track the location of the node, we can
57675767
// clean this up in a better way.

0 commit comments

Comments
 (0)