Skip to content

Commit 4d34f98

Browse files
committed
v1.29.1
1 parent e3b1e88 commit 4d34f98

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

Cargo.lock

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ members = [
1212
[package]
1313
authors = ["Devon Govett <[email protected]>"]
1414
name = "lightningcss"
15-
version = "1.0.0-alpha.62"
15+
version = "1.0.0-alpha.63"
1616
description = "A CSS parser, transformer, and minifier"
1717
license = "MPL-2.0"
1818
edition = "2021"

napi/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
authors = ["Devon Govett <[email protected]>"]
33
name = "lightningcss-napi"
4-
version = "0.4.2"
4+
version = "0.4.3"
55
description = "Node-API bindings for Lightning CSS"
66
license = "MPL-2.0"
77
repository = "https://github.com/parcel-bundler/lightningcss"
@@ -16,7 +16,7 @@ bundler = ["dep:crossbeam-channel", "dep:rayon"]
1616
serde = { version = "1.0.201", features = ["derive"] }
1717
serde_bytes = "0.11.5"
1818
cssparser = "0.33.0"
19-
lightningcss = { version = "1.0.0-alpha.62", path = "../", features = [
19+
lightningcss = { version = "1.0.0-alpha.63", path = "../", features = [
2020
"nodejs",
2121
"serde",
2222
] }

node/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ publish = false
99
crate-type = ["cdylib"]
1010

1111
[dependencies]
12-
lightningcss-napi = { version = "0.4.2", path = "../napi", features = [
12+
lightningcss-napi = { version = "0.4.3", path = "../napi", features = [
1313
"bundler",
1414
"visitor",
1515
] }

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lightningcss",
3-
"version": "1.29.0",
3+
"version": "1.29.1",
44
"license": "MPL-2.0",
55
"description": "A CSS parser, transformer, and minifier written in Rust",
66
"main": "node/index.js",

src/properties/list.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use super::{Property, PropertyId};
44
use crate::context::PropertyHandlerContext;
55
use crate::declaration::{DeclarationBlock, DeclarationList};
66
use crate::error::{ParserError, PrinterError};
7-
use crate::macros::{define_shorthand, enum_property, shorthand_handler, shorthand_property};
7+
use crate::macros::{define_shorthand, enum_property, shorthand_handler};
88
use crate::printer::Printer;
99
use crate::targets::{Browsers, Targets};
1010
use crate::traits::{FallbackValues, IsCompatible, Parse, PropertyHandler, Shorthand, ToCss};

0 commit comments

Comments
 (0)