woodcox / 11ty-solid-base

A solid base for building an SPA in 11ty with Solid-js, jsx, Is-land, WebC and esbuild
https://woodcox.github.io/11ty-solid-base
MIT License
13 stars 0 forks source link

Bump lightningcss-cli from 1.15.1 to 1.16.0 #1

Closed dependabot[bot] closed 2 years ago

dependabot[bot] commented 2 years ago

Bumps lightningcss-cli from 1.15.1 to 1.16.0.

Release notes

Sourced from lightningcss-cli's releases.

v1.16.0

This release adds support for the new relative color syntax, improves support for quoted CSS animation names, and fixes some bugs.

Relative color syntax

Lightning CSS now supports the new relative color syntax in the CSS Color Level 5 spec! This allows you to use math functions like calc() to manipulate the channel values of a source color, and to convert between color spaces. This is not yet shipping in any browsers, but Lightning CSS will do this manipulation at build time when possible, so that it works in any browser today!

Here's a simple example, which uses the lch color space to darken slateblue by 10%. This is done by using the l channel value in a calc() expression, and preserving the c and h channels as is.

.foo {
  color: lch(from slateblue calc(l - 10%) c h);
}

This will output:

.foo {
  color: lch(34.5711% 65.7776 296.794);
}

And, when lch colors are not supported by your browser targets, Lightning CSS already supports outputting fallbacks for older browsers:

.foo {
  color: #4e42b1;
  color: lch(34.5711% 65.7776 296.794);
}

Check it out in the playground!

Note that due to being a build time transform, CSS variables are not supported as source colors since the variable value may change at runtime. We'll have to wait for browser support for that.

Other fixes and improvements

Commits
  • 200120e v1.16.0
  • cbd392f Support parsing angles with unitless zero exceptions
  • 6e47cdb Revert serializing animation name as string
  • 44a402d Implement relative color syntax
  • 2434365 feat: support border-spacing (#294)
  • 1e7d0f9 fix: if the browser doesn't support #rrggbbaa color syntax, it is converted...
  • 16c498b Bump rust toolchain
  • b6eec64 Put animation name at the end
  • df280dc Serialize animation name as string when it conflicts with keyword
  • 0732197 fix: avoid parsing animation: "none" to animation: "none" none. (#295)
  • Additional commits viewable in compare view


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
dependabot[bot] commented 2 years ago

Looks like lightningcss-cli is up-to-date now, so this is no longer needed.