Skip to content

Commit 1676118

Browse files
committed
3.4.8
1 parent 69c81f2 commit 1676118

File tree

3 files changed

+21
-7
lines changed

3 files changed

+21
-7
lines changed

CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
- Nothing yet!
11+
12+
## [3.4.8] - 2024-08-07
13+
1014
### Fixed
1115

1216
- Fix minification when using nested CSS ([#14105](https://github.com/tailwindlabs/tailwindcss/pull/14105))
@@ -2415,7 +2419,8 @@ No release notes
24152419

24162420
- Everything!
24172421

2418-
[unreleased]: https://github.com/tailwindlabs/tailwindcss/compare/v3.4.7...HEAD
2422+
[unreleased]: https://github.com/tailwindlabs/tailwindcss/compare/v3.4.8...HEAD
2423+
[3.4.8]: https://github.com/tailwindlabs/tailwindcss/compare/v3.4.7...v3.4.8
24192424
[3.4.7]: https://github.com/tailwindlabs/tailwindcss/compare/v3.4.6...v3.4.7
24202425
[3.4.6]: https://github.com/tailwindlabs/tailwindcss/compare/v3.4.5...v3.4.6
24212426
[3.4.5]: https://github.com/tailwindlabs/tailwindcss/compare/v3.4.4...v3.4.5

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+13-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tailwindcss",
3-
"version": "3.4.7",
3+
"version": "3.4.8",
44
"description": "A utility-first CSS framework for rapidly building custom user interfaces.",
55
"license": "MIT",
66
"main": "lib/index.js",
@@ -87,17 +87,26 @@
8787
"resolve": "^1.22.2",
8888
"sucrase": "^3.32.0"
8989
},
90-
"browserslist": ["> 1%", "not edge <= 18", "not ie 11", "not op_mini all"],
90+
"browserslist": [
91+
"> 1%",
92+
"not edge <= 18",
93+
"not ie 11",
94+
"not op_mini all"
95+
],
9196
"jest": {
9297
"testTimeout": 30000,
93-
"setupFilesAfterEnv": ["<rootDir>/jest/customMatchers.js"],
98+
"setupFilesAfterEnv": [
99+
"<rootDir>/jest/customMatchers.js"
100+
],
94101
"testPathIgnorePatterns": [
95102
"/node_modules/",
96103
"/integrations/",
97104
"/standalone-cli/",
98105
"\\.test\\.skip\\.js$"
99106
],
100-
"transformIgnorePatterns": ["node_modules/(?!lightningcss)"],
107+
"transformIgnorePatterns": [
108+
"node_modules/(?!lightningcss)"
109+
],
101110
"transform": {
102111
"\\.js$": "@swc/jest",
103112
"\\.ts$": "@swc/jest"

0 commit comments

Comments
 (0)