tailwindcss 3.0.14 → 3.0.15

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 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.0.15] - 2022-01-15
13
+
14
+ ### Fixed
15
+
16
+ - Temporarily remove optional chaining in nesting plugin ([#7077](https://github.com/tailwindlabs/tailwindcss/pull/7077))
17
+
12
18
  ## [3.0.14] - 2022-01-14
13
19
 
14
20
  ### Added
@@ -1809,7 +1815,8 @@ No release notes
1809
1815
 
1810
1816
  - Everything!
1811
1817
 
1812
- [unreleased]: https://github.com/tailwindlabs/tailwindcss/compare/v3.0.14...HEAD
1818
+ [unreleased]: https://github.com/tailwindlabs/tailwindcss/compare/v3.0.15...HEAD
1819
+ [3.0.15]: https://github.com/tailwindlabs/tailwindcss/compare/v3.0.14...v3.0.15
1813
1820
  [3.0.14]: https://github.com/tailwindlabs/tailwindcss/compare/v3.0.13...v3.0.14
1814
1821
  [3.0.13]: https://github.com/tailwindlabs/tailwindcss/compare/v3.0.12...v3.0.13
1815
1822
  [3.0.12]: https://github.com/tailwindlabs/tailwindcss/compare/v3.0.11...v3.0.12
package/nesting/plugin.js CHANGED
@@ -16,7 +16,7 @@ module.exports = function nesting(opts = postcssNested) {
16
16
  let plugin = (() => {
17
17
  if (
18
18
  typeof opts === 'function' ||
19
- (typeof opts === 'object' && opts?.hasOwnProperty('postcssPlugin'))
19
+ (typeof opts === 'object' && opts.hasOwnProperty('postcssPlugin'))
20
20
  ) {
21
21
  return opts
22
22
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tailwindcss",
3
- "version": "3.0.14",
3
+ "version": "3.0.15",
4
4
  "description": "A utility-first CSS framework for rapidly building custom user interfaces.",
5
5
  "license": "MIT",
6
6
  "main": "lib/index.js",