Spaces:
Running
Running
ddotthomas
commited on
:bandage: fix: temporary fix for minifying js files (#565)
Browse files- Cargo.lock +5 -6
- Cargo.toml +6 -1
Cargo.lock
CHANGED
@@ -996,9 +996,9 @@ dependencies = [
|
|
996 |
|
997 |
[[package]]
|
998 |
name = "data-encoding"
|
999 |
-
version = "2.
|
1000 |
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1001 |
-
checksum = "
|
1002 |
|
1003 |
[[package]]
|
1004 |
name = "deranged"
|
@@ -2123,8 +2123,7 @@ dependencies = [
|
|
2123 |
[[package]]
|
2124 |
name = "minify-js"
|
2125 |
version = "0.6.0"
|
2126 |
-
source = "
|
2127 |
-
checksum = "b1fa5546ee8bd66024113e506cabe4230e76635a094c06ea2051b66021dda92e"
|
2128 |
dependencies = [
|
2129 |
"aho-corasick 0.7.20",
|
2130 |
"lazy_static",
|
@@ -2431,9 +2430,9 @@ dependencies = [
|
|
2431 |
|
2432 |
[[package]]
|
2433 |
name = "parse-js"
|
2434 |
-
version = "0.
|
2435 |
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2436 |
-
checksum = "
|
2437 |
dependencies = [
|
2438 |
"aho-corasick 0.7.20",
|
2439 |
"bumpalo",
|
|
|
996 |
|
997 |
[[package]]
|
998 |
name = "data-encoding"
|
999 |
+
version = "2.6.0"
|
1000 |
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1001 |
+
checksum = "e8566979429cf69b49a5c740c60791108e86440e8be149bbea4fe54d2c32d6e2"
|
1002 |
|
1003 |
[[package]]
|
1004 |
name = "deranged"
|
|
|
2123 |
[[package]]
|
2124 |
name = "minify-js"
|
2125 |
version = "0.6.0"
|
2126 |
+
source = "git+https://github.com/RuairidhWilliamson/minify-js?branch=master#8637df12fdb1d86d7586dde8adf4b8a5d39e7067"
|
|
|
2127 |
dependencies = [
|
2128 |
"aho-corasick 0.7.20",
|
2129 |
"lazy_static",
|
|
|
2430 |
|
2431 |
[[package]]
|
2432 |
name = "parse-js"
|
2433 |
+
version = "0.21.0"
|
2434 |
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2435 |
+
checksum = "26f2abaec4434c4c5ec8bb3abfa112c9779f774b54ef3d9a6321e022cfcced5f"
|
2436 |
dependencies = [
|
2437 |
"aho-corasick 0.7.20",
|
2438 |
"bumpalo",
|
Cargo.toml
CHANGED
@@ -99,7 +99,12 @@ tempfile = { version = "3.10.1", default-features = false }
|
|
99 |
lightningcss = { version = "1.0.0-alpha.55", default-features = false, features = [
|
100 |
"grid",
|
101 |
] }
|
102 |
-
|
|
|
|
|
|
|
|
|
|
|
103 |
|
104 |
[profile.dev]
|
105 |
opt-level = 0
|
|
|
99 |
lightningcss = { version = "1.0.0-alpha.55", default-features = false, features = [
|
100 |
"grid",
|
101 |
] }
|
102 |
+
# Disabled until bug fixing update
|
103 |
+
# minify-js = { version = "0.6.0", default-features = false }
|
104 |
+
# Temporary fork with fix
|
105 |
+
minify-js = { git = "https://github.com/RuairidhWilliamson/minify-js", branch = "master", version = "0.6.0", default-features = false}
|
106 |
+
|
107 |
+
|
108 |
|
109 |
[profile.dev]
|
110 |
opt-level = 0
|