Skip to content

Conversation

@renovate
Copy link

@renovate renovate bot commented Apr 29, 2020

This PR contains the following updates:

Package Type Update Change
tailwindcss (source) devDependencies minor 1.3.5 -> 1.4.6

Release Notes

tailwindcss/tailwindcss

v1.4.6

Compare Source

  • Explicitly error when using a class as the important config option instead of just generating the wrong CSS (ad850ac)

v1.4.5

Compare Source

  • Fix bug where the divideColor plugin was using the wrong variants in IE11 target mode

v1.4.4

Compare Source

  • Fix bug where target: 'browserslist' didn't work, only target: ['browserslist', {...}] did (f5c0e30)

v1.4.3

Compare Source

  • Don't generate unnecessary CSS in color plugins when color opacity utilities are disabled (#​1680)

v1.4.2

Compare Source

  • Fix issue where purge: { enabled: false } was ignored, add purge: false shorthand

v1.4.1

Compare Source

  • Improve built-in PurgeCSS extractor to better support Haml and Slim templates (cdef9c8, 9032ff3)

v1.4.0

Compare Source

Tailwind CSS v1.4.0

Another new minor version so soon? Merry Coronavirus 🎄😷🎄

New Features

New color opacity utilities (#​1627)

Tailwind v1.4 adds a new set of utilities for controlling just the alpha channel of colors:

  • bg-opacity-{value}
  • text-opacity-{value}
  • border-opacity-{value}
  • divide-opacity-{value}
  • placeholder-opacity-{value}

These utilities compose with the existing color utilities like this:

<div class="bg-red-500 bg-opacity-25">
  <!-- ... -->
</div>

All of these new utilities inherit their values from the opacity config by default but can be configured independently under the following theme keys:

  • backgroundOpacity
  • textOpacity
  • borderOpacity
  • placeholderOpacity
  • divideOpacity

Learn more in the pull request.

Built-in PurgeCSS (#​1639)

Tailwind v1.4 adds a new purge option to the config for removing unused CSS without the need for configuring another tool:

// tailwind.config.js
module.exports = {
  purge: [
    './src/**/*.html',
    './src/**/*.vue',
    './src/**/*.jsx',
  ],
  theme: {},
  variants: {},
  plugins: [],
}

Learn more in the pull request and the updated "Controlling File Size" documentation.

IE 11 target mode (#​1635)

This feature is experimental and may change outside of normal semantic versioning policies.

Recently we've been adding a lot of new features to Tailwind that aren't IE 11 compatible, and if you need to support IE 11 in your projects you have to be careful not to rely on these features by mistake.

To make this easier, we've added a new target option to the config that lets you opt-in to a new ie11 mode that disables any features that are not compatible with IE 11:

// tailwind.config.js
module.exports = {
  target: 'ie11',
  theme: {},
  variants: {},
  plugins: [],
}

Learn more in the pull request.


Renovate configuration

📅 Schedule: At any time (no schedule defined).

🚦 Automerge: Enabled.

♻️ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by WhiteSource Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/tailwindcss-1.x branch from d4be183 to 48c288d Compare April 30, 2020 13:16
@renovate renovate bot changed the title chore(deps): update dependency tailwindcss to v1.4.0 chore(deps): update dependency tailwindcss to v1.4.1 Apr 30, 2020
@renovate renovate bot force-pushed the renovate/tailwindcss-1.x branch from 48c288d to c4014b5 Compare May 1, 2020 12:28
@renovate renovate bot changed the title chore(deps): update dependency tailwindcss to v1.4.1 chore(deps): update dependency tailwindcss to v1.4.2 May 1, 2020
@renovate renovate bot force-pushed the renovate/tailwindcss-1.x branch from c4014b5 to dc5b275 Compare May 1, 2020 19:23
@renovate renovate bot changed the title chore(deps): update dependency tailwindcss to v1.4.2 chore(deps): update dependency tailwindcss to v1.4.3 May 1, 2020
@renovate renovate bot force-pushed the renovate/tailwindcss-1.x branch from dc5b275 to 3177f64 Compare May 1, 2020 19:35
@renovate renovate bot changed the title chore(deps): update dependency tailwindcss to v1.4.3 chore(deps): update dependency tailwindcss to v1.4.4 May 1, 2020
@renovate renovate bot force-pushed the renovate/tailwindcss-1.x branch from 3177f64 to 004fe44 Compare May 6, 2020 13:26
@renovate renovate bot changed the title chore(deps): update dependency tailwindcss to v1.4.4 chore(deps): update dependency tailwindcss to v1.4.5 May 6, 2020
@renovate renovate bot changed the title chore(deps): update dependency tailwindcss to v1.4.5 chore(deps): update dependency tailwindcss to v1.4.6 May 8, 2020
@renovate renovate bot force-pushed the renovate/tailwindcss-1.x branch from 004fe44 to d598c98 Compare May 8, 2020 17:55
@renovate renovate bot changed the title chore(deps): update dependency tailwindcss to v1.4.6 chore(deps): update dependency tailwindcss to v1.4.6 - autoclosed May 25, 2020
@renovate renovate bot closed this May 25, 2020
@renovate renovate bot deleted the renovate/tailwindcss-1.x branch May 25, 2020 10:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants