From 4d34f9819fd9d9894be8b82e3a48355e1a645fdb Mon Sep 17 00:00:00 2001 From: Devon Govett Date: Thu, 9 Jan 2025 12:12:26 -0500 Subject: [PATCH] v1.29.1 --- Cargo.lock | 6 +++--- Cargo.toml | 2 +- napi/Cargo.toml | 4 ++-- node/Cargo.toml | 2 +- package.json | 2 +- src/properties/list.rs | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index eae59587..fa68d332 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 3 +version = 4 [[package]] name = "ahash" @@ -730,7 +730,7 @@ dependencies = [ [[package]] name = "lightningcss" -version = "1.0.0-alpha.62" +version = "1.0.0-alpha.63" dependencies = [ "ahash 0.8.11", "assert_cmd", @@ -777,7 +777,7 @@ dependencies = [ [[package]] name = "lightningcss-napi" -version = "0.4.2" +version = "0.4.3" dependencies = [ "crossbeam-channel", "cssparser", diff --git a/Cargo.toml b/Cargo.toml index 2152859e..82802a65 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ members = [ [package] authors = ["Devon Govett "] 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" diff --git a/napi/Cargo.toml b/napi/Cargo.toml index fdca5a68..f2019e4b 100644 --- a/napi/Cargo.toml +++ b/napi/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["Devon Govett "] 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" @@ -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", ] } diff --git a/node/Cargo.toml b/node/Cargo.toml index 55aa66b8..bc7df82b 100644 --- a/node/Cargo.toml +++ b/node/Cargo.toml @@ -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", ] } diff --git a/package.json b/package.json index bb7eff5f..de384950 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/src/properties/list.rs b/src/properties/list.rs index d3c332bb..e411667d 100644 --- a/src/properties/list.rs +++ b/src/properties/list.rs @@ -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};