Skip to content

Commit bf44941

Browse files
Allow resolving content paths relative to the config file (#9396)
* Update lockfile * Tweak formatting * Refactor content path parsing * Allow resolving content paths relative to the config file * Include resolved symlinks as additional content paths * Update changelog * Work on suite of tests for content resolution * reformat integration test list * Move content resolution tests to integration * Update future and experimental types
1 parent 7ea02c2 commit bf44941

30 files changed

+2121
-128
lines changed

.github/workflows/integration-tests.yml

+10-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,16 @@ jobs:
1515

1616
strategy:
1717
matrix:
18-
integration: [parcel, postcss-cli, rollup, rollup-sass, tailwindcss-cli, vite, webpack-4, webpack-5]
18+
integration:
19+
- content-resolution
20+
- parcel
21+
- postcss-cli
22+
- rollup
23+
- rollup-sass
24+
- tailwindcss-cli
25+
- vite
26+
- webpack-4
27+
- webpack-5
1928
node-version: [16]
2029

2130
steps:

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1616
- Add negative value support for `outline-offset` ([#9136](https://github.com/tailwindlabs/tailwindcss/pull/9136))
1717
- Allow negating utilities using min/max/clamp ([#9237](https://github.com/tailwindlabs/tailwindcss/pull/9237))
1818
- Add new `collapse` utility for `visibility: collapse` ([#9181](https://github.com/tailwindlabs/tailwindcss/pull/9181))
19+
- Allow resolving content paths relative to the config file ([#9396](https://github.com/tailwindlabs/tailwindcss/pull/9396))
1920

2021
### Fixed
2122

Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.tailwind.config.js

0 commit comments

Comments
 (0)