Skip to content

Commit

Permalink
v1.29.1
Browse files Browse the repository at this point in the history
  • Loading branch information
devongovett committed Jan 9, 2025
1 parent e3b1e88 commit 4d34f98
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ members = [
[package]
authors = ["Devon Govett <[email protected]>"]
name = "lightningcss"
version = "1.0.0-alpha.62"
version = "1.0.0-alpha.63"
description = "A CSS parser, transformer, and minifier"
license = "MPL-2.0"
edition = "2021"
Expand Down
4 changes: 2 additions & 2 deletions napi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
authors = ["Devon Govett <[email protected]>"]
name = "lightningcss-napi"
version = "0.4.2"
version = "0.4.3"
description = "Node-API bindings for Lightning CSS"
license = "MPL-2.0"
repository = "https://github.com/parcel-bundler/lightningcss"
Expand All @@ -16,7 +16,7 @@ bundler = ["dep:crossbeam-channel", "dep:rayon"]
serde = { version = "1.0.201", features = ["derive"] }
serde_bytes = "0.11.5"
cssparser = "0.33.0"
lightningcss = { version = "1.0.0-alpha.62", path = "../", features = [
lightningcss = { version = "1.0.0-alpha.63", path = "../", features = [
"nodejs",
"serde",
] }
Expand Down
2 changes: 1 addition & 1 deletion node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ publish = false
crate-type = ["cdylib"]

[dependencies]
lightningcss-napi = { version = "0.4.2", path = "../napi", features = [
lightningcss-napi = { version = "0.4.3", path = "../napi", features = [
"bundler",
"visitor",
] }
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lightningcss",
"version": "1.29.0",
"version": "1.29.1",
"license": "MPL-2.0",
"description": "A CSS parser, transformer, and minifier written in Rust",
"main": "node/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/properties/list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use super::{Property, PropertyId};
use crate::context::PropertyHandlerContext;
use crate::declaration::{DeclarationBlock, DeclarationList};
use crate::error::{ParserError, PrinterError};
use crate::macros::{define_shorthand, enum_property, shorthand_handler, shorthand_property};
use crate::macros::{define_shorthand, enum_property, shorthand_handler};
use crate::printer::Printer;
use crate::targets::{Browsers, Targets};
use crate::traits::{FallbackValues, IsCompatible, Parse, PropertyHandler, Shorthand, ToCss};
Expand Down

0 comments on commit 4d34f98

Please sign in to comment.