tailwindcss 3.4.8 → 3.4.9
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 +8 -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,12 @@ 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.9] - 2024-08-08
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
|
|
16
|
+
- No longer warns when broad glob patterns are detecting `vendor` folders
|
|
17
|
+
|
|
12
18
|
## [3.4.8] - 2024-08-07
|
|
13
19
|
|
|
14
20
|
### Fixed
|
|
@@ -2419,7 +2425,8 @@ No release notes
|
|
|
2419
2425
|
|
|
2420
2426
|
- Everything!
|
|
2421
2427
|
|
|
2422
|
-
[unreleased]: https://github.com/tailwindlabs/tailwindcss/compare/v3.4.
|
|
2428
|
+
[unreleased]: https://github.com/tailwindlabs/tailwindcss/compare/v3.4.9...HEAD
|
|
2429
|
+
[3.4.9]: https://github.com/tailwindlabs/tailwindcss/compare/v3.4.8...v3.4.9
|
|
2423
2430
|
[3.4.8]: https://github.com/tailwindlabs/tailwindcss/compare/v3.4.7...v3.4.8
|
|
2424
2431
|
[3.4.7]: https://github.com/tailwindlabs/tailwindcss/compare/v3.4.6...v3.4.7
|
|
2425
2432
|
[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`
|