Skip to content

Commit

Permalink
v1.26.0
Browse files Browse the repository at this point in the history
  • Loading branch information
devongovett committed Aug 6, 2024
1 parent 27b7274 commit c7fc5a1
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 18 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ members = [
[package]
authors = ["Devon Govett <devongovett@gmail.com>"]
name = "lightningcss"
version = "1.0.0-alpha.57"
version = "1.0.0-alpha.58"
description = "A CSS parser, transformer, and minifier"
license = "MPL-2.0"
edition = "2021"
Expand Down Expand Up @@ -51,7 +51,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.26.5", path = "./selectors" }
parcel_selectors = { version = "0.26.6", path = "./selectors" }
itertools = "0.10.1"
smallvec = { version = "1.7.0", features = ["union"] }
bitflags = "2.2.1"
Expand All @@ -69,7 +69,7 @@ browserslist-rs = { version = "0.16.0", optional = true }
rayon = { version = "1.5.1", optional = true }
dashmap = { version = "5.0.0", optional = true }
serde_json = { version = "1.0.78", optional = true }
lightningcss-derive = { version = "=1.0.0-alpha.42", path = "./derive" }
lightningcss-derive = { version = "=1.0.0-alpha.43", path = "./derive" }
schemars = { version = "0.8.19", features = ["smallvec"], optional = true }
static-self = { version = "0.1.0", path = "static-self", optional = true }

Expand Down
2 changes: 1 addition & 1 deletion derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
authors = ["Devon Govett <devongovett@gmail.com>"]
name = "lightningcss-derive"
description = "Derive macros for lightningcss"
version = "1.0.0-alpha.42"
version = "1.0.0-alpha.43"
license = "MPL-2.0"
edition = "2021"
repository = "https://github.com/parcel-bundler/lightningcss"
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 <devongovett@gmail.com>"]
name = "lightningcss-napi"
version = "0.2.0"
version = "0.2.1"
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.55", path = "../", features = ["nodejs", "serde"] }
lightningcss = { version = "1.0.0-alpha.56", path = "../", features = ["nodejs", "serde"] }
parcel_sourcemap = { version = "2.1.1", features = ["json"] }
serde-detach = "0.0.1"
smallvec = { version = "1.7.0", features = ["union"] }
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.2.0", path = "../napi", features = ["bundler", "visitor"] }
lightningcss-napi = { version = "0.2.1", path = "../napi", features = ["bundler", "visitor"] }
napi = {version = "2.15.4", default-features = false, features = ["compat-mode"]}
napi-derive = "2"

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.25.1",
"version": "1.26.0",
"license": "MPL-2.0",
"description": "A CSS parser, transformer, and minifier written in Rust",
"main": "node/index.js",
Expand Down
7 changes: 2 additions & 5 deletions scripts/build-wasm.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,13 +65,10 @@ wasmPkg.exports = {
require: './index.cjs'
}
},
// Allow esbuild to import the wasm file
// Allow esbuild to import the wasm file
// without copying it in the src directory.
// Simplifies loading it in the browser when used in a library.
'./lightningcss_node.wasm': {
import: './lightningcss_node.wasm',
require: './lightningcss_node.wasm'
}
'./lightningcss_node.wasm': './lightningcss_node.wasm'
};
wasmPkg.types = 'index.d.ts';
wasmPkg.sideEffects = false;
Expand Down
2 changes: 1 addition & 1 deletion selectors/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "parcel_selectors"
version = "0.26.5"
version = "0.26.6"
authors = ["The Servo Project Developers"]
documentation = "https://docs.rs/parcel_selectors/"
description = "CSS Selectors matching for Rust - forked for lightningcss"
Expand Down

0 comments on commit c7fc5a1

Please sign in to comment.