Skip to content

Commit 3ae5ed3

Browse files
authored
feat: support wildcard environment variable patterns (#76)
1 parent 221716a commit 3ae5ed3

5 files changed

Lines changed: 799 additions & 267 deletions

File tree

Cargo.lock

Lines changed: 67 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ serde = "1.0.219"
7676
serde_json = "1.0.140"
7777
serde_yml = "0.0.12"
7878
serial_test = "3.2.0"
79+
sha2 = "0.10.9"
7980
shell-escape = "0.1.5"
8081
supports-color = "3.0.1"
8182
tar = "0.4.43"
@@ -97,7 +98,6 @@ vite_path = { path = "crates/vite_path" }
9798
vite_str = { path = "crates/vite_str" }
9899
vite_task = { path = "crates/vite_task" }
99100
wax = "0.6.0"
100-
wildmatch = "2.4.0"
101101

102102
napi = { version = "3.0.0", default-features = false, features = ["async", "error_anyhow"] }
103103
napi-build = "2"

crates/vite_task/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,19 +36,19 @@ rayon = { workspace = true }
3636
rusqlite = { workspace = true, features = ["bundled"] }
3737
serde = { workspace = true, features = ["derive", "rc"] }
3838
serde_json = { workspace = true }
39+
sha2 = { workspace = true }
3940
shell-escape = { workspace = true }
4041
supports-color = { workspace = true }
4142
tokio = { workspace = true, features = ["rt-multi-thread", "io-std", "macros"] }
4243
tracing = { workspace = true }
4344
tracing-subscriber = { workspace = true }
4445
twox-hash = { workspace = true }
46+
vite_error = { workspace = true }
47+
vite_glob = { workspace = true }
4548
vite_package_manager = { workspace = true }
4649
vite_path = { workspace = true }
4750
vite_str = { workspace = true }
4851
wax = { workspace = true }
49-
wildmatch = { workspace = true }
50-
51-
vite_error = { workspace = true }
5252

5353
[target.'cfg(unix)'.dependencies]
5454
nix = { workspace = true }

0 commit comments

Comments
 (0)