-
Notifications
You must be signed in to change notification settings - Fork 191
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ed9e659
commit 99f161a
Showing
7 changed files
with
14 additions
and
14 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ members = [ | |
[package] | ||
authors = ["Devon Govett <[email protected]>"] | ||
name = "lightningcss" | ||
version = "1.0.0-alpha.61" | ||
version = "1.0.0-alpha.62" | ||
description = "A CSS parser, transformer, and minifier" | ||
license = "MPL-2.0" | ||
edition = "2021" | ||
|
@@ -62,7 +62,7 @@ substitute_variables = ["visitor", "into_owned"] | |
serde = { version = "1.0.201", features = ["derive"], optional = true } | ||
cssparser = "0.33.0" | ||
cssparser-color = "0.1.0" | ||
parcel_selectors = { version = "0.28.0", path = "./selectors" } | ||
parcel_selectors = { version = "0.28.1", path = "./selectors" } | ||
itertools = "0.10.1" | ||
smallvec = { version = "1.7.0", features = ["union"] } | ||
bitflags = "2.2.1" | ||
|
@@ -83,7 +83,7 @@ dashmap = { version = "5.0.0", optional = true } | |
serde_json = { version = "1.0.78", optional = true } | ||
lightningcss-derive = { version = "=1.0.0-alpha.43", path = "./derive" } | ||
schemars = { version = "0.8.19", features = ["smallvec", "indexmap2"], optional = true } | ||
static-self = { version = "0.1.0", path = "static-self", optional = true } | ||
static-self = { version = "0.1.2", path = "static-self", optional = true } | ||
|
||
[target.'cfg(target_os = "macos")'.dependencies] | ||
jemallocator = { version = "0.3.2", features = [ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.1" | ||
version = "0.4.2" | ||
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.61", path = "../", features = [ | ||
lightningcss = { version = "1.0.0-alpha.62", path = "../", features = [ | ||
"nodejs", | ||
"serde", | ||
] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "static-self" | ||
version = "0.1.1" | ||
version = "0.1.2" | ||
edition = "2021" | ||
authors = ["Devon Govett <[email protected]>","Donny <[email protected]>"] | ||
description = "A trait for values that can be cloned with a static lifetime" | ||
|