Skip to content

Commit 9d14d3d

Browse files
authored
Merge branch 'main' into fix/issue-17813
2 parents 08f88a3 + dd5ec49 commit 9d14d3d

5 files changed

Lines changed: 101 additions & 100 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
### Added
1111

12-
- Upgrade: Automatically convert candidates with arbitrary values to their utilities ([#17831](https://github.com/tailwindlabs/tailwindcss/pull/17831))
12+
- Upgrade: Automatically convert candidates with arbitrary values to their utilities ([#17831](https://github.com/tailwindlabs/tailwindcss/pull/17831), [#17854](https://github.com/tailwindlabs/tailwindcss/pull/17854))
1313

1414
### Fixed
1515

packages/@tailwindcss-upgrade/src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,7 @@ async function run() {
283283
let scanner = new Scanner({ sources })
284284
let filesToMigrate = []
285285
for (let file of scanner.files) {
286+
if (file.endsWith('.css')) continue
286287
if (seenFiles.has(file)) continue
287288
seenFiles.add(file)
288289
filesToMigrate.push(file)

playgrounds/nextjs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"@types/node": "catalog:",
2121
"@types/react": "^19.1.2",
2222
"@types/react-dom": "^19.1.2",
23-
"eslint": "^9.24.0",
23+
"eslint": "^9.25.1",
2424
"eslint-config-next": "^15.3.1",
2525
"typescript": "^5.5.4"
2626
}

playgrounds/v3/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"@types/react": "^19.1.2",
2020
"@types/react-dom": "^19.1.2",
2121
"autoprefixer": "^10.4.21",
22-
"eslint": "^9.24.0",
22+
"eslint": "^9.25.1",
2323
"eslint-config-next": "^15.3.1",
2424
"typescript": "^5.5.4"
2525
}

0 commit comments

Comments
 (0)