Open greenkeeper[bot] opened 4 years ago
After pinning to 1.2.0 your tests are passing again. Downgrade this dependency π.
devDependency
tailwindcss was updated from 1.3.0
to 1.3.1
.Your tests are still failing with this version. Compare changes
devDependency
tailwindcss was updated from 1.3.1
to 1.3.2
.Your tests are still failing with this version. Compare changes
responsive
variants for space
, divideWidth
, and divideColor
utilitiesdevDependency
tailwindcss was updated from 1.3.2
to 1.3.3
.Your tests are still failing with this version. Compare changes
divide-x
utilities were not being applied correctly due to referencing --divide-y-reverse
instead of --divide-x-reverse
devDependency
tailwindcss was updated from 1.3.3
to 1.3.4
.Your tests are still failing with this version. Compare changes
divide-{x/y}-0
utilities didn't work due to missing unit in calc
calldevDependency
tailwindcss was updated from 1.3.4
to 1.3.5
.Your tests are still failing with this version. Compare changes
The new version differs by 7 commits.
30e0cb1
1.3.5
5f05677
Fix missing unit in calc bug in space plugin
072c60c
Drop fs-extra version to retain Node 8 compatibility
f48c0c7
Merge pull request #1607 from tailwindcss/dependabot/npm_and_yarn/master/resolve-1.17.0
f8ebe4c
Bump resolve from 1.16.1 to 1.17.0
d48e17d
Merge pull request #1600 from tailwindcss/dependabot/npm_and_yarn/master/eslint-config-prettier-6.11.0
fc62dfc
Bump eslint-config-prettier from 6.10.1 to 6.11.0
See the full diff
devDependency
tailwindcss was updated from 1.3.5
to 1.4.0
.Your tests are still failing with this version. Compare changes
Another new minor version so soon? Merry Coronavirus
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.
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.
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.
The new version differs by 30 commits.
20348ae
1.4.0
5b18ef4
Silence jest warnings about mutating require cache
7ce188e
Merge pull request #1635 from tailwindcss/target-modes
afe8d3c
Remove unused imports
a8e27d9
Remove position sticky in ie11 mode
1117e28
Add support for browserslist as target
b4acd94
Generate non-composable transforms in IE11 target mode
371a79f
Support plugin-specific target mode
e5288ff
Remove target helper
1c353af
Finish proof of concept for target: 'ie11'
feature
2950ff3
Initial support for IE11 target
b9a5b76
Merge pull request #1655 from tailwindcss/purge-improvements
77d3f75
Don't purge components, don't purge if paths empty, add empty purge to config stub
3a53a8c
Update fixtures
d351f12
Fix bugs in divideOpacity and placeholderOpacity plugins
There are 30 commits in total.
See the full diff
devDependency
tailwindcss was updated from 1.4.0
to 1.4.1
.Your tests are still failing with this version. Compare changes
The new version differs by 11 commits.
e52c59a
1.4.1
9032ff3
Improve support for purging Haml even more
cdef9c8
Improve support for purging Haml templates
1c18362
Merge pull request #1663 from tailwindcss/dependabot/npm_and_yarn/master/babel-jest-25.5.1
2a23d40
Bump babel-jest from 25.5.0 to 25.5.1
ea3d454
Merge pull request #1660 from tailwindcss/dependabot/npm_and_yarn/master/jest-25.5.2
bdd93d7
Bump jest from 25.5.0 to 25.5.2
e0aa7f0
Merge pull request #1662 from tailwindcss/dependabot/npm_and_yarn/master/babel/core-7.9.6
353e406
Merge pull request #1661 from tailwindcss/dependabot/npm_and_yarn/master/babel/preset-env-7.9.6
6e65695
Bump @babel/core from 7.9.0 to 7.9.6
37a7d2d
Bump @babel/preset-env from 7.9.5 to 7.9.6
See the full diff
devDependency
tailwindcss was updated from 1.4.1
to 1.4.2
.Your tests are still failing with this version. Compare changes
purge: { enabled: false }
was ignored, add purge: false
shorthandThe new version differs by 8 commits.
c2b0407
1.4.2
ab52a8c
Support purge: false
, add more info to console warning
e8c0264
Merge pull request #1677 from tailwindcss/dependabot/npm_and_yarn/master/jest-25.5.3
83d5a15
Bump jest from 25.5.2 to 25.5.3
67ec21e
Merge pull request #1673 from lihbr/fix/purge-enabled-false-eval-to-true
ddc6e1d
test: add test for purge being explicitly disabled
9863723
style: lint changes
1411370
fix: purgeEnabled evaluating to true when config.purge.enabled is false
See the full diff
devDependency
tailwindcss was updated from 1.4.2
to 1.4.3
.Your tests are still failing with this version. Compare changes
The new version differs by 7 commits.
6aef917
1.4.3
9aa201f
Merge pull request #1680 from tailwindcss/disable-color-opacity-optimization
ef92361
Disable lint rule for TODO comments π
e6fd316
Don't generate color opacity code in color plugins if not necessary
52aab17
Merge pull request #1679 from tailwindcss/add-coreplugins-api
652100e
Add corePlugins function to plugin API
09ff23f
Replace logo in README
See the full diff
devDependency
tailwindcss was updated from 1.4.3
to 1.4.4
.Your tests are still failing with this version. Compare changes
target: 'browserslist'
didn't work, only target: ['browserslist', {...}]
did (f5c0e30)devDependency
tailwindcss was updated from 1.4.4
to 1.4.5
.Your tests are still failing with this version. Compare changes
divideColor
plugin was using the wrong variants
in IE11 target modeThe new version differs by 18 commits.
99a5fea
1.4.5
f79b5c2
Improve PurgeCSS warning
4e5be9c
Fix bug where divideColor plugin was using wrong variants in IE11 mode
39e4b62
Merge pull request #1716 from tailwindcss/dependabot/npm_and_yarn/master/fullhuman/postcss-purgecss-2.2.0
9b135fa
Merge pull request #1715 from tailwindcss/dependabot/npm_and_yarn/master/babel-jest-26.0.1
632af7d
Bump @fullhuman/postcss-purgecss from 2.1.2 to 2.2.0
728eb9f
Bump babel-jest from 26.0.0 to 26.0.1
a15da3e
Merge branch 'davewasmer-patch-1'
9d6e8bc
Fix style
cc409dc
Merge pull request #1707 from tailwindcss/dependabot/npm_and_yarn/master/babel-jest-26.0.0
62266d2
Merge pull request #1705 from tailwindcss/dependabot/npm_and_yarn/master/postcss-7.0.29
5a6441e
Bump babel-jest from 25.5.1 to 26.0.0
6239002
Bump postcss from 7.0.28 to 7.0.29
93cdddd
Improve error message for missing variant
7de7345
Merge pull request #1695 from tailwindcss/dependabot/npm_and_yarn/master/postcss-7.0.28
There are 18 commits in total.
See the full diff
devDependency
tailwindcss was updated from 1.4.5
to 1.4.6
.Your tests are still failing with this version. Compare changes
βοΈ Important announcement: Greenkeeper will be saying goodbye π and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io
The devDependency tailwindcss was updated from
1.2.0
to1.3.0
.π¨ View failing branch.
This version is covered by your current version range and after updating it in your project the build failed.
tailwindcss is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.
Status Details
- β **ci/circleci: build:** Your tests failed on CircleCI ([Details](https://circleci.com/gh/cdunnnnnnn/learn-slovak/314?utm_campaign=vcs-integration-link&utm_medium=referral&utm_source=github-build-link)).Commits
The new version differs by 88 commits.
d710db5
1.3.0
b3b06e8
Add negative
space
utility support8df2cd5
Merge branch 'stack-divide-utilities'
a14ea02
Use border-width for divide, not border
1743c23
Merge pull request #1594 from tailwindcss/stack-divide-utilities
0653659
Update fixtures
a75b690
Support reverse order for space and divide utilities
7ef2e0a
Merge pull request #1593 from tailwindcss/dependabot/npm_and_yarn/master/resolve-1.16.1
013345d
Bump resolve from 1.16.0 to 1.16.1
3ca7ada
Merge pull request #1592 from tailwindcss/dependabot/npm_and_yarn/master/babel-jest-25.4.0
6aa0510
Bump babel-jest from 25.3.0 to 25.4.0
cb41c6f
Merge pull request #1591 from tailwindcss/dependabot/npm_and_yarn/master/jest-25.4.0
be76d63
Bump jest from 25.3.0 to 25.4.0
8b2473f
Merge pull request #1584 from tailwindcss/stack-divide-utilities
3584791
Merge pull request #1398 from OwenMelbz/master
There are 88 commits in total.
See the full diff
FAQ and help
There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html). If those donβt help, you can always [ask the humans behind Greenkeeper](https://github.com/greenkeeperio/greenkeeper/issues/new).Your Greenkeeper Bot :palm_tree: