Skip to content

Commit

Permalink
Invalidate context when main css changes (#7626)
Browse files Browse the repository at this point in the history
* Invalidate context when CSS changes

* Remove invalidation count check

* Add sass integration test

* Update changelog
  • Loading branch information
thecrypticace committed Feb 25, 2022
1 parent d9bc25d commit bd16763
Show file tree
Hide file tree
Showing 18 changed files with 3,173 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/integration-tests.yml
Expand Up @@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
integration: [parcel, postcss-cli, rollup, tailwindcss-cli, vite, webpack-4, webpack-5]
integration: [parcel, postcss-cli, rollup, rollup-sass, tailwindcss-cli, vite, webpack-4, webpack-5]
node-version: [16]

steps:
Expand Down
8 changes: 7 additions & 1 deletion CHANGELOG.md
Expand Up @@ -7,17 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Fixed

- Prevent nesting plugin from breaking other plugins ([#7563](https://github.com/tailwindlabs/tailwindcss/pull/7563))
- Recursively collapse adjacent rules ([#7565](https://github.com/tailwindlabs/tailwindcss/pull/7565))
- Allow default ring color to be a function ([#7587](https://github.com/tailwindlabs/tailwindcss/pull/7587))
- Preserve source maps for generated CSS ([#7588](https://github.com/tailwindlabs/tailwindcss/pull/7588))
- Split box shadows on top-level commas only ([#7479](https://github.com/tailwindlabs/tailwindcss/pull/7479))
- Use local user CSS cache for `@apply` ([#7524](https://github.com/tailwindlabs/tailwindcss/pull/7524))
- Invalidate context when main CSS changes ([#7626](https://github.com/tailwindlabs/tailwindcss/pull/7626))

### Changed

- Replace `chalk` with `picocolors` ([#6039](https://github.com/tailwindlabs/tailwindcss/pull/6039))

### Added

- Allow default ring color to be a function ([#7587](https://github.com/tailwindlabs/tailwindcss/pull/7587))

## [3.0.23] - 2022-02-16

### Fixed
Expand Down
4 changes: 4 additions & 0 deletions integrations/rollup-sass/.gitignore
@@ -0,0 +1,4 @@
dist/
node_modules/
!tailwind.config.js
!index.html

0 comments on commit bd16763

Please sign in to comment.