tailwindcss 3.4.8 → 3.4.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +15 -1
- package/lib/lib/content.js +1 -2
- package/package.json +1 -1
- package/src/lib/content.js +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
9
9
|
|
|
10
10
|
- Nothing yet!
|
|
11
11
|
|
|
12
|
+
## [3.4.10] - 2024-08-13
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
|
|
16
|
+
- Bump versions of plugins in the Standalone CLI ([#14185](https://github.com/tailwindlabs/tailwindcss/pull/14185))
|
|
17
|
+
|
|
18
|
+
## [3.4.9] - 2024-08-08
|
|
19
|
+
|
|
20
|
+
### Fixed
|
|
21
|
+
|
|
22
|
+
- No longer warns when broad glob patterns are detecting `vendor` folders
|
|
23
|
+
|
|
12
24
|
## [3.4.8] - 2024-08-07
|
|
13
25
|
|
|
14
26
|
### Fixed
|
|
@@ -2419,7 +2431,9 @@ No release notes
|
|
|
2419
2431
|
|
|
2420
2432
|
- Everything!
|
|
2421
2433
|
|
|
2422
|
-
[unreleased]: https://github.com/tailwindlabs/tailwindcss/compare/v3.4.
|
|
2434
|
+
[unreleased]: https://github.com/tailwindlabs/tailwindcss/compare/v3.4.10...HEAD
|
|
2435
|
+
[3.4.10]: https://github.com/tailwindlabs/tailwindcss/compare/v3.4.9...v3.4.10
|
|
2436
|
+
[3.4.9]: https://github.com/tailwindlabs/tailwindcss/compare/v3.4.8...v3.4.9
|
|
2423
2437
|
[3.4.8]: https://github.com/tailwindlabs/tailwindcss/compare/v3.4.7...v3.4.8
|
|
2424
2438
|
[3.4.7]: https://github.com/tailwindlabs/tailwindcss/compare/v3.4.6...v3.4.7
|
|
2425
2439
|
[3.4.6]: https://github.com/tailwindlabs/tailwindcss/compare/v3.4.5...v3.4.6
|
package/lib/lib/content.js
CHANGED
|
@@ -158,8 +158,7 @@ function resolvedChangedContent(context, candidateFiles, fileModifiedMap) {
|
|
|
158
158
|
];
|
|
159
159
|
}
|
|
160
160
|
const LARGE_DIRECTORIES = [
|
|
161
|
-
"node_modules"
|
|
162
|
-
"vendor"
|
|
161
|
+
"node_modules"
|
|
163
162
|
];
|
|
164
163
|
// Ensures that `node_modules` has to match as-is, otherwise `mynode_modules`
|
|
165
164
|
// would match as well, but that is not a known large directory.
|
package/package.json
CHANGED
package/src/lib/content.js
CHANGED
|
@@ -185,7 +185,6 @@ export function resolvedChangedContent(context, candidateFiles, fileModifiedMap)
|
|
|
185
185
|
|
|
186
186
|
const LARGE_DIRECTORIES = [
|
|
187
187
|
'node_modules', // Node
|
|
188
|
-
'vendor', // PHP
|
|
189
188
|
]
|
|
190
189
|
|
|
191
190
|
// Ensures that `node_modules` has to match as-is, otherwise `mynode_modules`
|