commit_hash stringlengths 40 40 | author stringlengths 1 57 | date timestamp[s]date 2010-07-26 04:45:09 2026-04-14 18:21:10 | message stringlengths 8 1.39M | diff stringlengths 68 51.2k | files_changed int64 1 136 | insertions int64 0 2.35k | deletions int64 0 1.9k |
|---|---|---|---|---|---|---|---|
d3cc488ac1f41bc752903a3e15a123a909a2b765 | RiESAEX | 2022-01-14T14:13:42 | feat(es/compat): Use `var` for `_len` and `args` in rest parameters (#3267) | diff --git a/crates/swc_ecma_transforms_compat/src/es2015/parameters.rs b/crates/swc_ecma_transforms_compat/src/es2015/parameters.rs
index c28afecf2b..8b1834949c 100644
--- a/crates/swc_ecma_transforms_compat/src/es2015/parameters.rs
+++ b/crates/swc_ecma_transforms_compat/src/es2015/parameters.rs
@@ -278,7 +278,7 @@ i... | 3 | 10 | 10 |
ade8ab8c35b9d1c61d740f42672fb4d27977346d | Alexander Akait | 2022-01-13T23:59:52 | fix(css/lexer): Resolve a `TODO` (#3260) | diff --git a/crates/swc_css_parser/src/lexer/mod.rs b/crates/swc_css_parser/src/lexer/mod.rs
index faf26e9e80..77a943c82d 100644
--- a/crates/swc_css_parser/src/lexer/mod.rs
+++ b/crates/swc_css_parser/src/lexer/mod.rs
@@ -116,7 +116,6 @@ where
fn read_token(&mut self) -> LexResult<Token> {
self.read_co... | 1 | 3 | 3 |
69978518c9f6be3797f401dcaf9a429de88e8ce1 | mrauhu | 2022-01-13T23:33:38 | fix(es/ast): Update `EsVersion::latest()` (#3261) | diff --git a/crates/swc_ecma_ast/src/lib.rs b/crates/swc_ecma_ast/src/lib.rs
index 643876f827..2a3c167363 100644
--- a/crates/swc_ecma_ast/src/lib.rs
+++ b/crates/swc_ecma_ast/src/lib.rs
@@ -118,10 +118,10 @@ pub enum EsVersion {
}
impl EsVersion {
- /// Get the latest version. This is `es2021` for now, but it w... | 1 | 2 | 2 |
0843f742c5db3e0a8dc2fc2767b96fe0fad76bd1 | Donny/강동윤 | 2022-01-13T09:41:34 | fix(swc): Remove `wrong-target` (#3251)
swc:
- Remove the cargo feature `wrong-target`. (Closes #1108) | diff --git a/crates/node/Cargo.toml b/crates/node/Cargo.toml
index 633efe314a..1e4f1a70c3 100644
--- a/crates/node/Cargo.toml
+++ b/crates/node/Cargo.toml
@@ -14,7 +14,7 @@ crate-type = ["cdylib"]
[features]
default = ["swc_v1", "plugin"]
plugin = ["swc/plugin"]
-swc_v1 = ["swc_node_bundler/swc_v1", "swc/wrong-targe... | 5 | 2 | 17 |
282232c9958309e70a18799449802ef5d7e88123 | David Sherret | 2022-01-13T04:41:34 | fix(es/typescript): Remove rogue `println` (#3244) | diff --git a/crates/swc_ecma_transforms_typescript/src/strip.rs b/crates/swc_ecma_transforms_typescript/src/strip.rs
index 632bd6f7d1..4d024b30ae 100644
--- a/crates/swc_ecma_transforms_typescript/src/strip.rs
+++ b/crates/swc_ecma_transforms_typescript/src/strip.rs
@@ -2796,7 +2796,6 @@ impl VisitMut for EnumValuesVis... | 1 | 0 | 1 |
432d5d3fb7d870b08f8c16e4147c3f5421693d2b | OJ Kwon | 2022-01-12T09:32:52 | feat(plugin/macro): Add safe API for plugins based on a proc-macro (#3240) | diff --git a/Cargo.lock b/Cargo.lock
index a52a3581f9..d304e0bcd2 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -3407,13 +3407,20 @@ dependencies = [
name = "swc_plugin"
version = "0.24.0"
dependencies = [
- "anyhow",
- "serde",
- "serde_json",
"swc_atoms",
"swc_common",
"swc_ecma_ast",
"swc_ecma_visit",
+ "sw... | 12 | 136 | 57 |
a2f2b5ac8924ce635fc9547057da287864fe188a | OJ Kwon | 2022-01-11T10:11:04 | feat(plugin): Don't serialize/deserialize needlessly (#3227)
swc_common:
- Add `Serialized`.
swc_plugin_runner:
- Accept `Serialized` instead of `Program`.
- Pass `Serialized` from previous plugin instead of deserializing it. | diff --git a/Cargo.lock b/Cargo.lock
index 7c53c63e14..96f57e0818 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -3424,7 +3424,6 @@ dependencies = [
"libloading",
"once_cell",
"parking_lot",
- "rkyv",
"serde",
"serde_json",
"swc_atoms",
diff --git a/crates/swc/src/plugin.rs b/crates/swc/src/plugin.rs
index eca... | 11 | 247 | 130 |
b649d23bac1faf5ae0ba9463ba9069d09055b63c | RiESAEX | 2022-01-11T07:45:01 | feat(es/compat): Implement object super (#3127)
swc_ecma_transforms_compat:
- Implement object super. (Closes #2684) | diff --git a/crates/swc/src/builder.rs b/crates/swc/src/builder.rs
index 467e6ce023..3a59071858 100644
--- a/crates/swc/src/builder.rs
+++ b/crates/swc/src/builder.rs
@@ -244,7 +244,8 @@ impl<'a, 'b, P: swc_ecma_visit::Fold> PassBuilder<'a, 'b, P> {
},
parameter... | 4 | 872 | 5 |
956514953940556847e7a5b42d7f1f21cffe9dd8 | Guillaume Malette | 2022-01-11T07:13:12 | fix(es/modules): Fix lazy import handling (#3211)
swc_ecma_transforms_module:
- `common_js`: Correctly track lazy imports. (Closes #3081) | diff --git a/crates/swc_ecma_transforms_module/src/amd.rs b/crates/swc_ecma_transforms_module/src/amd.rs
index 19d4940446..53dfc08da3 100644
--- a/crates/swc_ecma_transforms_module/src/amd.rs
+++ b/crates/swc_ecma_transforms_module/src/amd.rs
@@ -647,10 +647,7 @@ where
fn fold_prop(&mut self, p: Prop) -> Prop {
... | 5 | 242 | 34 |
1edbf1a37a37c5e3a9bf695b4793d0c35c2d6592 | Donny/강동윤 | 2022-01-11T05:41:34 | feat(es/ast): Update `is-macro` (#3226)
swc_ecma_ast:
- Add `as_*` for ast enums. | diff --git a/Cargo.lock b/Cargo.lock
index ba5f72ec65..c4217f5d85 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1049,9 +1049,9 @@ checksum = "68f2d64f2edebec4ce84ad108148e67e1064789bee435edc5b60ad398714a3a9"
[[package]]
name = "is-macro"
-version = "0.1.9"
+version = "0.2.0"
source = "registry+https://github.com/ru... | 7 | 8 | 8 |
7e7421ea527f499c6488de19fb8171f2b65787b4 | OJ Kwon | 2022-01-10T12:34:16 | feat(plugin): Perform actual transforms in plugins (#3220) | diff --git a/Cargo.lock b/Cargo.lock
index 2e8548c371..6e2b6ba264 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2158,9 +2158,9 @@ checksum = "11000e6ba5020e53e7cc26f73b91ae7d5496b4977851479edb66b694c0675c21"
[[package]]
name = "rkyv"
-version = "0.7.28"
+version = "0.7.29"
source = "registry+https://github.com/rust... | 7 | 123 | 26 |
db71f7a42df8c9144a25fa9aaee14d5fbf8f8ded | Donny | 2022-01-10T06:16:55 | chore: Publish crates | diff --git a/Cargo.lock b/Cargo.lock
index f955528d00..2e8548c371 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2555,7 +2555,7 @@ dependencies = [
[[package]]
name = "swc"
-version = "0.110.0"
+version = "0.110.1"
dependencies = [
"ahash",
"anyhow",
@@ -2791,7 +2791,7 @@ dependencies = [
[[package]]
name = ... | 5 | 14 | 14 |
0d4b67105208501a018b6189aaf5c4a8111d08d0 | Donny | 2022-01-10T06:05:26 | chore: Publish crates | diff --git a/Cargo.lock b/Cargo.lock
index 2f483c7a96..f955528d00 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -604,7 +604,7 @@ dependencies = [
[[package]]
name = "dbg-swc"
-version = "0.3.0"
+version = "0.4.0"
dependencies = [
"anyhow",
"pretty_assertions 1.0.0",
@@ -2555,7 +2555,7 @@ dependencies = [
[[pa... | 22 | 128 | 128 |
42f726873e6c9e813a750acbf6d818bd4e914e31 | Donny/강동윤 | 2022-01-08T14:26:09 | feat(es/transforms): Add `Assumptions` (#3215)
swc_ecma_transforms_base:
- Add `Assumptions`. (Closes #2057)
swc_ecma_transforms:
- Reexport `Assumptions`.
swc:
- Add `jsc.assumptions`. | diff --git a/Cargo.lock b/Cargo.lock
index 06e875d11c..8c0e790de3 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -3031,6 +3031,7 @@ dependencies = [
"phf",
"rayon",
"scoped-tls",
+ "serde",
"smallvec",
"swc_atoms",
"swc_common",
diff --git a/crates/swc/src/builder.rs b/crates/swc/src/builder.rs
index fd6b8a36b... | 8 | 127 | 4 |
432f87779003e50f17bcaedc35edb8583644c548 | Sosuke Suzuki | 2022-01-06T11:19:11 | feat(es/ast): Use `ModuleExportName` for `ExportNamespaceSpecifier` (#3195) | diff --git a/crates/swc_bundler/src/bundler/chunk/merge.rs b/crates/swc_bundler/src/bundler/chunk/merge.rs
index 712c39181a..cfdee441c1 100644
--- a/crates/swc_bundler/src/bundler/chunk/merge.rs
+++ b/crates/swc_bundler/src/bundler/chunk/merge.rs
@@ -964,14 +964,23 @@ where
for s in... | 10 | 114 | 69 |
b61c49fe39acf28e09888e7b2163c7be5cceff4b | OJ Kwon | 2022-01-04T07:10:39 | refactor(plugin/runner): Avoid redundant filesystem reads (#3186) | diff --git a/crates/swc/src/plugin.rs b/crates/swc/src/plugin.rs
index 97e247bc4f..eca1751c56 100644
--- a/crates/swc/src/plugin.rs
+++ b/crates/swc/src/plugin.rs
@@ -14,59 +14,14 @@ use swc_ecma_visit::{noop_fold_type, Fold};
#[serde(deny_unknown_fields, rename_all = "camelCase")]
pub struct PluginConfig(String, ser... | 3 | 72 | 61 |
e5e6e843004b7ad3ce0ffa95f583d2c2a808736a | David Sherret | 2022-01-04T05:54:45 | feat(es/dep-graph): Improve DependencyDescriptor to combine `import_assertions` with `dynamic_import_assertions` (#3183) | diff --git a/Cargo.lock b/Cargo.lock
index 6826f59cd6..e5f7d67836 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2978,6 +2978,7 @@ dependencies = [
name = "swc_ecma_dep_graph"
version = "0.53.0"
dependencies = [
+ "pretty_assertions 0.7.2",
"swc_atoms",
"swc_common",
"swc_ecma_ast",
diff --git a/crates/swc_ecma_... | 3 | 171 | 171 |
ab10f77af994fd301a00fadade203d0c7a112fae | Donny | 2022-01-04T05:19:00 | chore: Publish crates | diff --git a/Cargo.lock b/Cargo.lock
index 8570ff3a95..6826f59cd6 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2692,7 +2692,7 @@ dependencies = [
[[package]]
name = "swc"
-version = "0.102.2"
+version = "0.103.0"
dependencies = [
"ahash",
"anyhow",
@@ -3454,7 +3454,7 @@ dependencies = [
[[package]]
name = ... | 7 | 17 | 17 |
35b64613bb1f6de52d7362e66d28c50513dbbe12 | magic-akari | 2021-12-30T08:21:54 | fix(es/compat): Visit all private class methods (#3150) | diff --git a/crates/swc_ecma_transforms_compat/src/es2022/class_properties/mod.rs b/crates/swc_ecma_transforms_compat/src/es2022/class_properties/mod.rs
index 4d107ac78e..4a6727c160 100644
--- a/crates/swc_ecma_transforms_compat/src/es2022/class_properties/mod.rs
+++ b/crates/swc_ecma_transforms_compat/src/es2022/class... | 2 | 29 | 0 |
356082ad84fa69cf09b5627598a2576bd1b27c36 | Austaras | 2021-12-29T11:38:32 | fix(es/utils): Fix handling of `new.target` (#3145) | diff --git a/crates/swc_ecma_preset_env/src/lib.rs b/crates/swc_ecma_preset_env/src/lib.rs
index a318c81304..e8ca0ba75b 100644
--- a/crates/swc_ecma_preset_env/src/lib.rs
+++ b/crates/swc_ecma_preset_env/src/lib.rs
@@ -200,12 +200,13 @@ where
);
let pass = add!(pass, BlockScoping, es2015::block_scoping(), tru... | 4 | 91 | 8 |
333acb56223139817c1df0c8b3763190b55a6295 | Donny/강동윤 | 2021-12-29T07:01:15 | doc(es/ast): Improve rustdoc (#3142)
swc_ecma_ast:
- Document `Str.kind`.
- Document `TpleElement.cooked`. | diff --git a/crates/swc_ecma_ast/src/expr.rs b/crates/swc_ecma_ast/src/expr.rs
index 4c06e145c2..0d35fa2d8e 100644
--- a/crates/swc_ecma_ast/src/expr.rs
+++ b/crates/swc_ecma_ast/src/expr.rs
@@ -642,6 +642,12 @@ impl Take for TaggedTpl {
pub struct TplElement {
pub span: Span,
pub tail: bool,
+
+ /// This... | 4 | 44 | 23 |
72c963662d63338235378d71ee856c782cdeddfe | OJ Kwon | 2021-12-29T06:27:51 | refactor(*): Drop unused dependencies (#3138) | diff --git a/Cargo.lock b/Cargo.lock
index 53a799f75d..b288291d1b 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -24,8 +24,8 @@ dependencies = [
"crossbeam-channel",
"generational-arena",
"libloading",
- "lock_api 0.4.5",
- "parking_lot 0.11.1",
+ "lock_api",
+ "parking_lot",
"paste",
"repr_offset",
"rustc_ver... | 25 | 64 | 375 |
83f71c2c0b8382e70172b1e2d4d9a18852e7a995 | Pig Fang | 2021-12-27T08:30:05 | feat(es/preset-env): Upgrade `browserslist-rs` (#3122) | diff --git a/Cargo.lock b/Cargo.lock
index 77713801c0..5a2374939b 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -259,9 +259,9 @@ dependencies = [
[[package]]
name = "browserslist-rs"
-version = "0.5.1"
+version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "05e8d671fb6bc653ac... | 2 | 6 | 23 |
a1cb4a4aa57bd54e6718f293a65361952f4ef11d | magic-akari | 2021-12-25T14:46:56 | fix(es/compat): Fix handling of class methods with a big int as a key (#3118) | diff --git a/crates/swc_ecma_transforms_compat/src/es2015/classes/mod.rs b/crates/swc_ecma_transforms_compat/src/es2015/classes/mod.rs
index ea907406b0..043856b507 100644
--- a/crates/swc_ecma_transforms_compat/src/es2015/classes/mod.rs
+++ b/crates/swc_ecma_transforms_compat/src/es2015/classes/mod.rs
@@ -727,7 +727,15... | 2 | 45 | 1 |
ab2960b2c7d93160ae621d5b4808adb4308c8e79 | Donny | 2021-12-25T11:54:30 | chore: Publish crates | diff --git a/Cargo.lock b/Cargo.lock
index 6bd9cc3eb8..1009d4da47 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2583,7 +2583,7 @@ dependencies = [
[[package]]
name = "swc"
-version = "0.99.2"
+version = "0.99.3"
dependencies = [
"ahash",
"anyhow",
diff --git a/crates/swc/Cargo.toml b/crates/swc/Cargo.toml
index... | 2 | 2 | 2 |
d98a59339a0fa2a14f2bcb92c6deeb810ec339be | Alex Alikiotis | 2021-12-22T17:53:02 | feat(es/bundler): Add an option to disable tree-shaking (#3102) | diff --git a/crates/swc_bundler/examples/bundle.rs b/crates/swc_bundler/examples/bundle.rs
index e5db4f8a50..e93faa7408 100644
--- a/crates/swc_bundler/examples/bundle.rs
+++ b/crates/swc_bundler/examples/bundle.rs
@@ -86,6 +86,7 @@ fn do_test(_entry: &Path, entries: HashMap<String, FileName>, inline: bool, mini
... | 4 | 11 | 6 |
7d57eb2dc490b4dd7c24c35f4a4df9c13f267d56 | Nayeem Rahman | 2021-12-22T07:30:52 | feat(es/dep-graph): Add `DependencyDescriptor::dynamic_import_assertions` (#3095) | diff --git a/crates/swc_ecma_dep_graph/src/lib.rs b/crates/swc_ecma_dep_graph/src/lib.rs
index 1203ad1c8b..303c17d2b8 100644
--- a/crates/swc_ecma_dep_graph/src/lib.rs
+++ b/crates/swc_ecma_dep_graph/src/lib.rs
@@ -29,6 +29,29 @@ pub enum DependencyKind {
Require,
}
+#[derive(Clone, Debug, Eq, PartialEq)]
+pub ... | 1 | 247 | 36 |
15cbe4fcaad7b7b2f7bcc9fd413594a18ede25d8 | Donny/강동윤 | 2021-12-21T19:56:49 | fix(es/loader): Update `lru` (#3092) | diff --git a/Cargo.lock b/Cargo.lock
index c4acc819de..3341fd5d9e 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1129,9 +1129,9 @@ dependencies = [
[[package]]
name = "lru"
-version = "0.6.6"
+version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7ea2d928b485416e8908cff2d97d... | 3 | 4 | 4 |
ba2563f59ed819e67a56e39cdcf38a7ccabd8f47 | Donny/강동윤 | 2021-12-21T12:39:35 | fix(es/loader): Prefer ESM (#3089)
swc_ecma_loader:
- Check for `module` field and prefer it over `main`. | diff --git a/crates/swc_bundler/examples/bundle.rs b/crates/swc_bundler/examples/bundle.rs
index 87f4e9c704..e5db4f8a50 100644
--- a/crates/swc_bundler/examples/bundle.rs
+++ b/crates/swc_bundler/examples/bundle.rs
@@ -81,7 +81,7 @@ fn do_test(_entry: &Path, entries: HashMap<String, FileName>, inline: bool, mini
... | 2 | 11 | 5 |
f1b81266cf895dac28f68151b9c16eaa9401ec43 | Quentin Michel | 2021-12-21T07:10:30 | feat(node): Report correct error when `swc_v1` and `swc_v2` is enabled at the same time (#3080) | diff --git a/crates/node/build.rs b/crates/node/build.rs
index 9fc2367889..7f2796ce3d 100644
--- a/crates/node/build.rs
+++ b/crates/node/build.rs
@@ -1,5 +1,11 @@
extern crate napi_build;
+#[cfg(all(not(feature = "swc_v1"), not(feature = "swc_v2")))]
+compile_error!("Please enable swc_v1 or swc_v2 feature");
+
+#[c... | 2 | 6 | 3 |
2e89a4f5a8fda133a8d990ecfc0104e64075d15c | OJ Kwon | 2021-12-20T06:03:00 | feat(cli): Setup packages for CLI (#3070) | diff --git a/Cargo.lock b/Cargo.lock
index d9501e98fd..eeeae652b2 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -336,6 +336,21 @@ dependencies = [
"winapi",
]
+[[package]]
+name = "clap"
+version = "2.34.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a0610544180c38b88101fecf2dd634b... | 5 | 172 | 1 |
938e544ac55503e91811cfc4e0c333deb2ccc7ed | James Newell | 2021-12-20T05:30:52 | fix(es/compat): Fix handling of union of the legacy decorator pass (#3057)
swc_ecma_transforms_proposal:
- Use `Object` for `null`/`undefined`.
- Fix the type for union types. (Closes #2461) | diff --git a/crates/swc_ecma_transforms/tests/decorators.rs b/crates/swc_ecma_transforms/tests/decorators.rs
index aae166a74f..f49d4e51fb 100644
--- a/crates/swc_ecma_transforms/tests/decorators.rs
+++ b/crates/swc_ecma_transforms/tests/decorators.rs
@@ -5043,10 +5043,10 @@ let Sample = _class = _dec11(_class = _dec10(... | 2 | 41 | 10 |
a1b315a114d63aa06856de63d02070d471c271d0 | Pig Fang | 2021-12-19T08:46:32 | feat(es/preset-env): Upgrade `browserslist-rs` (#3069) | diff --git a/Cargo.lock b/Cargo.lock
index eac25d9d48..5688afbcc2 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -83,6 +83,7 @@ dependencies = [
"const-random",
"getrandom 0.2.3",
"once_cell",
+ "serde",
"version_check",
]
@@ -258,17 +259,18 @@ dependencies = [
[[package]]
name = "browserslist-rs"
-version ... | 2 | 24 | 5 |
967f30d7d4573b675dc021b19963367af0d51f46 | Donny | 2021-12-19T03:45:44 | chore: Publish crates | diff --git a/Cargo.lock b/Cargo.lock
index 36d4ed6ad0..ba9d24de7b 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2949,7 +2949,7 @@ dependencies = [
[[package]]
name = "swc_ecma_transforms_compat"
-version = "0.59.1"
+version = "0.59.2"
dependencies = [
"ahash",
"arrayvec",
@@ -3135,7 +3135,7 @@ dependencies = [
... | 3 | 5 | 5 |
ff1aab710c3593ca127032b41b419ecc1a4038d5 | magic-akari | 2021-12-19T03:42:46 | fix(es/compat): Transform an optional eval call as an indirect eval call (#3068)
swc_ecma_transforms_compat:
- `optional_chaining`: Handle optional `eval` calls properly. (Closes #2735) | diff --git a/crates/swc_ecma_transforms_compat/src/es2020/opt_chaining.rs b/crates/swc_ecma_transforms_compat/src/es2020/opt_chaining.rs
index 9c02099b4a..3b66de6456 100644
--- a/crates/swc_ecma_transforms_compat/src/es2020/opt_chaining.rs
+++ b/crates/swc_ecma_transforms_compat/src/es2020/opt_chaining.rs
@@ -1,10 +1,1... | 4 | 48 | 4 |
a4b77bf11f0bde9ffc2ef9d4bc7d7f4d8f25acdc | Donny | 2021-12-18T15:21:30 | chore: Publish crates | diff --git a/Cargo.lock b/Cargo.lock
index 6648ec9c17..98155b57d8 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2565,7 +2565,7 @@ dependencies = [
[[package]]
name = "swc_common"
-version = "0.15.0"
+version = "0.15.1"
dependencies = [
"abi_stable",
"ahash",
diff --git a/crates/swc_common/Cargo.toml b/crates/sw... | 2 | 2 | 2 |
b4d95b44a7465941e58ec66a13c800e00409b188 | Donny/강동윤 | 2021-12-18T15:18:00 | perf(es/parser): Improve performance (#3059)
swc_common:
- Optimize `StringInput`.
swc_ecma_parser:
- Optimize `skip_space`.
- Remove useless `.clone()`. | diff --git a/Cargo.lock b/Cargo.lock
index 6c50057689..b7805664e7 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -550,6 +550,15 @@ dependencies = [
"num_cpus",
]
+[[package]]
+name = "debug_unreachable"
+version = "0.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9a032eac705ca3921... | 20 | 155 | 123 |
0c813ae4530b34b4203ae844b470786c0305d268 | asterite3 | 2021-12-18T14:14:36 | fix(es/lexer): Fix lexing of numbers with large exponent (#3061)
swc_ecma_parser:
- Fix lexing of numbers where exponents are large enough to be parsed as `Infinity`. (Closes #3060) | diff --git a/crates/swc_ecma_parser/src/lexer/number.rs b/crates/swc_ecma_parser/src/lexer/number.rs
index febdd44277..3d3117b386 100644
--- a/crates/swc_ecma_parser/src/lexer/number.rs
+++ b/crates/swc_ecma_parser/src/lexer/number.rs
@@ -137,13 +137,22 @@ impl<'a, I: Input> Lexer<'a, I> {
};
... | 1 | 59 | 5 |
a381fb8bce0ed82e7b0a201bb175acb13ce90205 | OJ Kwon | 2021-12-17T06:08:22 | fix(es/compat): Fix `block_scoping` (#3058)
swc_ecma_transforms_compat:
- `block_scoping`: Consider the location of variable declarations. (Closes #2998) | diff --git a/crates/swc_ecma_transforms_compat/src/es2015/block_scoping.rs b/crates/swc_ecma_transforms_compat/src/es2015/block_scoping.rs
index ceca67a98a..f34c449791 100644
--- a/crates/swc_ecma_transforms_compat/src/es2015/block_scoping.rs
+++ b/crates/swc_ecma_transforms_compat/src/es2015/block_scoping.rs
@@ -30,6 ... | 2 | 69 | 0 |
08920189ba62cee4f836a417bffcef014e97becb | Donny/강동윤 | 2021-12-15T10:08:07 | fix(webpack/ast): Expose fields of `AstOutput` (#3046) | diff --git a/crates/swc_webpack_ast/src/lib.rs b/crates/swc_webpack_ast/src/lib.rs
index 3dae40737f..9365779369 100644
--- a/crates/swc_webpack_ast/src/lib.rs
+++ b/crates/swc_webpack_ast/src/lib.rs
@@ -17,8 +17,8 @@ pub mod reducer;
#[derive(Serialize)]
pub struct AstOutput {
- ast: String,
- src: Option<Lrc... | 1 | 2 | 2 |
29eb71aaf9b1154aba1a28c408aaa1a2bd7a8ec7 | OJ Kwon | 2021-12-14T09:24:57 | perf(es/compat): Migrate `regenerator` to `VisitMut` (#3037) | diff --git a/crates/swc_ecma_transforms_compat/src/es2015/regenerator/mod.rs b/crates/swc_ecma_transforms_compat/src/es2015/regenerator/mod.rs
index 874a02c97a..921c5a432b 100644
--- a/crates/swc_ecma_transforms_compat/src/es2015/regenerator/mod.rs
+++ b/crates/swc_ecma_transforms_compat/src/es2015/regenerator/mod.rs
@... | 1 | 215 | 230 |
340eaf48f355c17bc04f26f59658d0cf464f00a4 | Donny | 2021-12-14T09:02:06 | chore: Publish crates | diff --git a/Cargo.lock b/Cargo.lock
index c6ff31a33b..3477f27ddd 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2927,7 +2927,7 @@ dependencies = [
[[package]]
name = "swc_ecma_transforms_classes"
-version = "0.35.0"
+version = "0.35.1"
dependencies = [
"swc_atoms 0.2.9",
"swc_common",
diff --git a/crates/swc_ec... | 2 | 2 | 2 |
c415487bb91f466948c2279030f3643049ad395a | Donny/강동윤 | 2021-12-13T00:21:22 | fix(es/codegen): Fix sourcemap bug related to multi-line comments (#3023)
swc_ecma_codegen:
- Compute line starts in multi-line comments. | diff --git a/crates/swc_ecma_codegen/src/text_writer/basic_impl.rs b/crates/swc_ecma_codegen/src/text_writer/basic_impl.rs
index 3adfe71ab4..12ac94b22f 100644
--- a/crates/swc_ecma_codegen/src/text_writer/basic_impl.rs
+++ b/crates/swc_ecma_codegen/src/text_writer/basic_impl.rs
@@ -184,6 +184,13 @@ impl<'a, W: Write> W... | 1 | 7 | 0 |
f86c077a37821da8f8dcd6ef72029d0c3b73403e | Donny | 2021-12-12T21:46:14 | chore: Publish crates | diff --git a/Cargo.lock b/Cargo.lock
index 85c9ee6cc9..e85e271121 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2443,7 +2443,7 @@ checksum = "6446ced80d6c486436db5c078dde11a9f73d42b57fb273121e160b84f63d894c"
[[package]]
name = "swc"
-version = "0.95.0"
+version = "0.96.0"
dependencies = [
"ahash",
"anyhow",
@@ ... | 16 | 70 | 70 |
d3ffc6719b46c18ec47c4cc054f09a9ed950391f | RiESAEX | 2021-12-12T21:18:48 | perf(es/compat): Migrate class helper to `VisitMut` (#3020) | diff --git a/crates/swc_ecma_transforms_classes/src/macros.rs b/crates/swc_ecma_transforms_classes/src/macros.rs
index 23720af6d7..69ac81a6bf 100644
--- a/crates/swc_ecma_transforms_classes/src/macros.rs
+++ b/crates/swc_ecma_transforms_classes/src/macros.rs
@@ -1,31 +1,5 @@
/// Not intended for public use.
#[macro_e... | 5 | 136 | 161 |
b4c210d1d928d21abd8fc3ed46005460f77fd183 | Sosuke Suzuki | 2021-12-12T20:42:19 | fix(es/parser): Allow trailing comma in dynamic imports if import assertion is enabled (#3018) | diff --git a/crates/swc_ecma_parser/src/parser/expr.rs b/crates/swc_ecma_parser/src/parser/expr.rs
index fb2edeb131..469174d998 100644
--- a/crates/swc_ecma_parser/src/parser/expr.rs
+++ b/crates/swc_ecma_parser/src/parser/expr.rs
@@ -602,7 +602,7 @@ impl<'a, I: Tokens> Parser<I> {
expect!(p, ',');... | 2 | 21 | 1 |
da4111a022f6b1b71ff52071fc7a7750e60db1e8 | Donny | 2021-12-11T11:54:21 | chore: Publish crates | diff --git a/Cargo.lock b/Cargo.lock
index 466ab023d3..5cf0bca7f7 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1616,9 +1616,9 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
[[package]]
name = "pkg-config"
-version = "0.3.23"
+version = "0.3.24"
source = "registry+https://github.co... | 2 | 4 | 4 |
333b52c646d9d56e37cdf5e6d9f4d04ceb7bfbd6 | RiESAEX | 2021-12-11T08:24:57 | perf(es/compat): Migrate `classes` to `VisitMut` partially (#2995) | diff --git a/crates/swc_ecma_transforms_classes/src/macros.rs b/crates/swc_ecma_transforms_classes/src/macros.rs
index 7cfbf2f90c..23720af6d7 100644
--- a/crates/swc_ecma_transforms_classes/src/macros.rs
+++ b/crates/swc_ecma_transforms_classes/src/macros.rs
@@ -25,3 +25,17 @@ macro_rules! fold_only_key {
}
... | 3 | 175 | 183 |
a04b4082a4a6a1120e23b7f7bc17b6fabe9c33ed | Donny | 2021-12-11T08:00:52 | Bump version | diff --git a/Cargo.lock b/Cargo.lock
index 241177ec31..466ab023d3 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -3076,7 +3076,7 @@ dependencies = [
[[package]]
name = "swc_ecma_transforms_testing"
-version = "0.49.0"
+version = "0.50.0"
dependencies = [
"ansi_term 0.12.1",
"anyhow",
diff --git a/crates/swc_ecma_... | 10 | 10 | 10 |
f87df958d5a9a7a4c0a7d2ce3803590f226fe48c | Donny | 2021-12-11T07:21:44 | chore: Publish crates | diff --git a/Cargo.lock b/Cargo.lock
index 71c6a308cc..d0bfad21e5 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2933,7 +2933,7 @@ dependencies = [
[[package]]
name = "swc_ecma_transforms_compat"
-version = "0.57.4"
+version = "0.57.5"
dependencies = [
"ahash",
"arrayvec",
diff --git a/crates/swc_ecma_transforms... | 2 | 2 | 2 |
91d6343d7fe8272a4fcd645d39fca74b5e0c6fc6 | OJ Kwon | 2021-12-11T05:30:56 | perf(es/compat): Migrate `regenerator` to `VisitMut` partially (#3007) | diff --git a/crates/swc_ecma_transforms_compat/src/es2015/regenerator/case.rs b/crates/swc_ecma_transforms_compat/src/es2015/regenerator/case.rs
index b8705708de..c1cdb0047f 100644
--- a/crates/swc_ecma_transforms_compat/src/es2015/regenerator/case.rs
+++ b/crates/swc_ecma_transforms_compat/src/es2015/regenerator/case.... | 2 | 117 | 144 |
9a00c9a13f8cd0ebf0db7e71b81134c3f5aec74a | Donny | 2021-12-11T04:58:49 | chore: Publish crates | diff --git a/Cargo.lock b/Cargo.lock
index 7aa21f13bd..71c6a308cc 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -817,9 +817,9 @@ dependencies = [
[[package]]
name = "hermit-abi"
-version = "0.1.20"
+version = "0.1.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c7a30908dbce072eca832... | 2 | 8 | 8 |
819fc88a19a927091e8ce093d9eab518da039138 | Bartek Iwańczuk | 2021-12-11T04:58:11 | fix(es/dep_graph): Fix parsing of import assertions (#3005) | diff --git a/crates/swc_ecma_dep_graph/src/lib.rs b/crates/swc_ecma_dep_graph/src/lib.rs
index acab5aabc5..1203ad1c8b 100644
--- a/crates/swc_ecma_dep_graph/src/lib.rs
+++ b/crates/swc_ecma_dep_graph/src/lib.rs
@@ -171,6 +171,38 @@ impl<'a> Visit for DependencyCollector<'a> {
if let ast::Lit::Str(str_)... | 1 | 81 | 9 |
8340a86fbbf86556c8002b628eeb8787e3740d36 | Donny/강동윤 | 2021-12-10T14:36:43 | refactor(es/ast): Move `Id` to `swc_ecma_ast` (#3004) | diff --git a/Cargo.lock b/Cargo.lock
index ecf16f14a3..7aa21f13bd 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2681,7 +2681,7 @@ dependencies = [
[[package]]
name = "swc_ecma_ast"
-version = "0.59.0"
+version = "0.59.1"
dependencies = [
"arbitrary",
"is-macro",
@@ -3119,7 +3119,7 @@ dependencies = [
[[packa... | 6 | 26 | 11 |
57f512c26229594cba6e82a69dcd33fc8274cf89 | Donny | 2021-12-10T10:36:51 | chore: Publish crates | diff --git a/Cargo.lock b/Cargo.lock
index c2d9621eca..5c96e17d26 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2900,7 +2900,7 @@ dependencies = [
[[package]]
name = "swc_ecma_transforms_base"
-version = "0.48.0"
+version = "0.48.1"
dependencies = [
"once_cell",
"phf",
@@ -3097,7 +3097,7 @@ dependencies = [
... | 3 | 4 | 4 |
68861007d98b022ec02c90db1def868cd2eefa93 | Donny | 2021-12-10T09:56:37 | chore: Publish crates | diff --git a/Cargo.lock b/Cargo.lock
index 8bbf7dd842..c2d9621eca 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2933,7 +2933,7 @@ dependencies = [
[[package]]
name = "swc_ecma_transforms_compat"
-version = "0.57.3"
+version = "0.57.4"
dependencies = [
"ahash",
"arrayvec",
diff --git a/crates/swc_ecma_transforms... | 2 | 2 | 2 |
7ca1e174b7a396eb9952cf42fa32588dab0c965d | OJ Kwon | 2021-12-10T09:56:24 | perf(es/compat): Migrate `object_rest` to `VisitMut` (#2997) | diff --git a/crates/swc_ecma_transforms_compat/src/es2018/object_rest_spread.rs b/crates/swc_ecma_transforms_compat/src/es2018/object_rest_spread.rs
index 50a94620d0..9b124a8334 100644
--- a/crates/swc_ecma_transforms_compat/src/es2018/object_rest_spread.rs
+++ b/crates/swc_ecma_transforms_compat/src/es2018/object_rest... | 2 | 79 | 248 |
c5b943f5880b6fbaf640c11c7f6d79ddc15b243f | Donny | 2021-12-10T09:55:41 | chore: Publish crates | diff --git a/Cargo.lock b/Cargo.lock
index ca7503d5e9..8bbf7dd842 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2933,7 +2933,7 @@ dependencies = [
[[package]]
name = "swc_ecma_transforms_compat"
-version = "0.57.2"
+version = "0.57.3"
dependencies = [
"ahash",
"arrayvec",
diff --git a/crates/swc_ecma_transforms... | 2 | 2 | 2 |
a1756062c5f2e05042bc43c343ace448d65f3925 | OJ Kwon | 2021-12-10T09:54:14 | perf(es/compat): Migrate `class_properties` to `VisitMut` (#2993) | diff --git a/crates/swc_ecma_transforms_compat/src/es2022/class_properties/mod.rs b/crates/swc_ecma_transforms_compat/src/es2022/class_properties/mod.rs
index f64c4059ab..985dda7254 100644
--- a/crates/swc_ecma_transforms_compat/src/es2022/class_properties/mod.rs
+++ b/crates/swc_ecma_transforms_compat/src/es2022/class... | 1 | 60 | 59 |
deae28c31dfefb5674464758978cb7417e2b5458 | Donny | 2021-12-10T09:19:38 | chore: Publish crates | diff --git a/Cargo.lock b/Cargo.lock
index 83daddbc89..ca7503d5e9 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -789,9 +789,9 @@ checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
[[package]]
name = "h2"
-version = "0.3.7"
+version = "0.3.9"
source = "registry+https://github.com/rust-lang/... | 2 | 14 | 14 |
8ea40a370714b238b5500a86e3ee9b0047a642a9 | Donny | 2021-12-08T10:54:05 | chore: Publish crates | diff --git a/Cargo.lock b/Cargo.lock
index 62e3477214..83daddbc89 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -590,9 +590,9 @@ checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
[[package]]
name = "encoding_rs"
-version = "0.8.29"
+version = "0.8.30"
source = "registry+https://github.com... | 4 | 11 | 11 |
6a7ad9239ea2fc12fc4ffe8de51d971c2f42422e | Donny/강동윤 | 2021-12-08T10:47:11 | fix(es/compat): Fix for synthesized template literals (#2994) | diff --git a/Cargo.lock b/Cargo.lock
index 0b37147e79..62e3477214 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2933,7 +2933,7 @@ dependencies = [
[[package]]
name = "swc_ecma_transforms_compat"
-version = "0.57.1"
+version = "0.57.2"
dependencies = [
"ahash",
"arrayvec",
diff --git a/crates/swc_ecma_transforms... | 3 | 6 | 3 |
f6a926e6fb76c4536a708c29a4a1874e8121573c | Donny | 2021-12-08T06:25:49 | chore: Publish crates | diff --git a/Cargo.lock b/Cargo.lock
index b88a43feb7..0b37147e79 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -3097,7 +3097,7 @@ dependencies = [
[[package]]
name = "swc_ecma_transforms_typescript"
-version = "0.67.0"
+version = "0.67.1"
dependencies = [
"serde",
"swc_atoms 0.2.9",
diff --git a/crates/swc_ecma... | 2 | 2 | 2 |
bf69cd554bc4cd5846a674c35d39fd9a1cdb097c | Donny | 2021-12-07T09:03:14 | chore: Publish crates | diff --git a/Cargo.lock b/Cargo.lock
index 10c8a0ba09..2db7d0fe0d 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2443,7 +2443,7 @@ checksum = "6446ced80d6c486436db5c078dde11a9f73d42b57fb273121e160b84f63d894c"
[[package]]
name = "swc"
-version = "0.94.0"
+version = "0.95.0"
dependencies = [
"ahash",
"anyhow",
@@ ... | 7 | 18 | 18 |
7d4c372e8ae3074ad425fe497d3c19e52563c7fe | Donny | 2021-12-07T06:19:11 | chore: Publish crates | diff --git a/Cargo.lock b/Cargo.lock
index 28d68d73e0..10c8a0ba09 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2933,7 +2933,7 @@ dependencies = [
[[package]]
name = "swc_ecma_transforms_compat"
-version = "0.57.0"
+version = "0.57.1"
dependencies = [
"ahash",
"arrayvec",
diff --git a/crates/swc_ecma_transforms... | 2 | 2 | 2 |
32f936995889e9814e9ac97e313df70c814a9be2 | OJ Kwon | 2021-12-07T06:18:53 | perf(es/compat): Migrate `static_blocks` to `VisitMut` (#2973) | diff --git a/crates/swc_ecma_transforms_compat/src/es2022/static_blocks.rs b/crates/swc_ecma_transforms_compat/src/es2022/static_blocks.rs
index 9fa28ffc8a..06801aac16 100644
--- a/crates/swc_ecma_transforms_compat/src/es2022/static_blocks.rs
+++ b/crates/swc_ecma_transforms_compat/src/es2022/static_blocks.rs
@@ -1,50 ... | 1 | 38 | 54 |
82ece9d0ca3c1c7900707d1b0953b91ee7ade6b9 | Donny | 2021-12-07T06:15:08 | chore: Publish crates | diff --git a/Cargo.lock b/Cargo.lock
index 9da7b7a21b..28d68d73e0 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2443,7 +2443,7 @@ checksum = "6446ced80d6c486436db5c078dde11a9f73d42b57fb273121e160b84f63d894c"
[[package]]
name = "swc"
-version = "0.93.0"
+version = "0.94.0"
dependencies = [
"ahash",
"anyhow",
@@ ... | 18 | 95 | 95 |
acc45e7c36c329a759100fcda2d4eddcc9f40f93 | Donny | 2021-12-05T08:34:04 | chore: Publish crates | diff --git a/Cargo.lock b/Cargo.lock
index f58f172c96..9e921d22c9 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -999,7 +999,7 @@ dependencies = [
[[package]]
name = "jsdoc"
-version = "0.48.0"
+version = "0.49.0"
dependencies = [
"anyhow",
"dashmap",
@@ -2442,7 +2442,7 @@ checksum = "6446ced80d6c486436db5c078dde... | 29 | 181 | 181 |
16540fba758861935e86f680975c95669eccf6c2 | Donny | 2021-12-05T07:30:42 | chore: Publish crates | diff --git a/Cargo.lock b/Cargo.lock
index 018a120d9d..2313435b2e 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -3095,7 +3095,7 @@ dependencies = [
[[package]]
name = "swc_ecma_transforms_typescript"
-version = "0.64.0"
+version = "0.64.1"
dependencies = [
"serde",
"swc_atoms 0.2.9",
diff --git a/crates/swc_ecma... | 2 | 2 | 2 |
529f9806937be45d701b2131ff2915301252c206 | Donny | 2021-12-05T06:44:50 | chore: Publish crates | diff --git a/Cargo.lock b/Cargo.lock
index a7cfe102f3..018a120d9d 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -999,7 +999,7 @@ dependencies = [
[[package]]
name = "jsdoc"
-version = "0.47.0"
+version = "0.48.0"
dependencies = [
"anyhow",
"dashmap",
@@ -2442,7 +2442,7 @@ checksum = "6446ced80d6c486436db5c078dde... | 29 | 181 | 181 |
58159d377c33969c98c0f5af012ae8d47357aa2a | Donny | 2021-12-05T06:43:04 | chore: Publish crates | diff --git a/Cargo.lock b/Cargo.lock
index e395002dee..a7cfe102f3 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1044,9 +1044,9 @@ dependencies = [
[[package]]
name = "libc"
-version = "0.2.108"
+version = "0.2.109"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8521a1b57e76b1ec69af759... | 2 | 4 | 4 |
fd2a78828275f1e284f41c7c842a0bb7579aabf7 | Donny | 2021-12-04T12:03:13 | chore: Publish crates | diff --git a/Cargo.lock b/Cargo.lock
index d12a77b877..b565fa4d7b 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2932,7 +2932,7 @@ dependencies = [
[[package]]
name = "swc_ecma_transforms_compat"
-version = "0.53.3"
+version = "0.53.4"
dependencies = [
"ahash",
"arrayvec",
diff --git a/crates/swc_ecma_transforms... | 2 | 2 | 2 |
89af8ab9a278539b34c93ab888a8930f4a35b146 | OJ Kwon | 2021-12-04T11:57:52 | perf(es/compat): Migrate `class_properties` to `VisitMut` partially (#2966) | diff --git a/crates/swc_ecma_transforms_compat/src/es2022/class_properties/mod.rs b/crates/swc_ecma_transforms_compat/src/es2022/class_properties/mod.rs
index 0f92db9174..e015010113 100644
--- a/crates/swc_ecma_transforms_compat/src/es2022/class_properties/mod.rs
+++ b/crates/swc_ecma_transforms_compat/src/es2022/class... | 2 | 133 | 140 |
42a93dd8ef39a2997594bc5e41e924613b4ba411 | Donny | 2021-12-04T02:53:14 | chore: Publish crates | diff --git a/Cargo.lock b/Cargo.lock
index 431ea0f03c..166162fdcd 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2020,9 +2020,9 @@ checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
[[package]]
name = "relative-path"
-version = "1.5.0"
+version = "1.6.0"
source = "registry+https://github.c... | 12 | 43 | 43 |
32e2f3e46c8ec819250600deb79a5531b9d96215 | Donny | 2021-12-03T16:55:54 | chore: Publish crates | diff --git a/Cargo.lock b/Cargo.lock
index 09cfc98c71..431ea0f03c 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1133,9 +1133,9 @@ checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a"
[[package]]
name = "memoffset"
-version = "0.6.4"
+version = "0.6.5"
source = "registry+https://github.com/r... | 2 | 4 | 4 |
fd8541eb9d8cceaaf901d412e27cfa96ff148773 | Donny | 2021-12-03T12:23:06 | chore: Publish crates | diff --git a/Cargo.lock b/Cargo.lock
index c7e0638ac4..905dc1ea25 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2079,9 +2079,9 @@ dependencies = [
[[package]]
name = "retain_mut"
-version = "0.1.4"
+version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "448296241d034b96c1117... | 2 | 4 | 4 |
348b6cf6f0d4688f70b51d0c05d21b1223d7ba79 | Donny | 2021-12-03T09:36:10 | chore: Publish crates | diff --git a/Cargo.lock b/Cargo.lock
index f294195cac..e7aff7851c 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2932,7 +2932,7 @@ dependencies = [
[[package]]
name = "swc_ecma_transforms_compat"
-version = "0.53.2"
+version = "0.53.3"
dependencies = [
"ahash",
"arrayvec",
diff --git a/crates/swc_ecma_transforms... | 2 | 2 | 2 |
084eebec848b1e4ce097a689ec48d9d54284c61b | OJ Kwon | 2021-12-03T09:27:58 | refactor(es/compat): Migrate `destructuring` to `VisitMut` (#2947) | diff --git a/crates/swc_ecma_transforms_compat/src/es2015/destructuring.rs b/crates/swc_ecma_transforms_compat/src/es2015/destructuring.rs
index ff137077d3..726116c641 100644
--- a/crates/swc_ecma_transforms_compat/src/es2015/destructuring.rs
+++ b/crates/swc_ecma_transforms_compat/src/es2015/destructuring.rs
@@ -1,7 +... | 2 | 359 | 178 |
ef3ea6b467cc5bef7fb987331291ee11c47dd5a0 | Donny | 2021-12-03T08:25:44 | chore: Publish crates | diff --git a/Cargo.lock b/Cargo.lock
index 50564d9ff9..f294195cac 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2932,7 +2932,7 @@ dependencies = [
[[package]]
name = "swc_ecma_transforms_compat"
-version = "0.53.1"
+version = "0.53.2"
dependencies = [
"ahash",
"arrayvec",
diff --git a/crates/swc_ecma_transforms... | 2 | 2 | 2 |
eade0374f24c6b01640d3e3ffdd09616dff04653 | Donny | 2021-12-02T08:23:50 | chore: Publish crates | diff --git a/Cargo.lock b/Cargo.lock
index f876527386..50564d9ff9 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2844,7 +2844,7 @@ dependencies = [
[[package]]
name = "swc_ecma_preset_env"
-version = "0.68.0"
+version = "0.68.1"
dependencies = [
"ahash",
"anyhow",
diff --git a/crates/swc_ecma_preset_env/Cargo.to... | 2 | 2 | 2 |
3302d1733acd5adf4f53ce8c2aef678990f584f2 | Pig Fang | 2021-12-02T08:03:28 | refactor(es/preset-env): Avoid unnecessary `unwrap` (#2943) | diff --git a/crates/swc_ecma_preset_env/src/lib.rs b/crates/swc_ecma_preset_env/src/lib.rs
index 7669e14a5a..6d9b6178bd 100644
--- a/crates/swc_ecma_preset_env/src/lib.rs
+++ b/crates/swc_ecma_preset_env/src/lib.rs
@@ -455,14 +455,15 @@ impl BrowserData<Option<Version>> {
_ => {}
}
- ... | 1 | 7 | 6 |
e8225a66a04d3ae1b519a8a01fed0222d99154f9 | Donny | 2021-12-02T07:29:34 | chore: Publish crates | diff --git a/Cargo.lock b/Cargo.lock
index 4657f5a677..f876527386 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2899,7 +2899,7 @@ dependencies = [
[[package]]
name = "swc_ecma_transforms_base"
-version = "0.44.4"
+version = "0.44.5"
dependencies = [
"once_cell",
"phf",
diff --git a/crates/swc_ecma_transforms_ba... | 2 | 2 | 2 |
36db1ed3591e9afde8df6fd9166058f283a5a02b | Donny | 2021-12-02T06:55:03 | chore: Publish crates | diff --git a/Cargo.lock b/Cargo.lock
index 806d78e953..4657f5a677 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1212,9 +1212,9 @@ dependencies = [
[[package]]
name = "napi-build"
-version = "1.1.2"
+version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d46af3cd13ef452354c87... | 3 | 6 | 6 |
67dc0d3b9426d3160e95d4be6dce0e892677f819 | Donny | 2021-12-02T01:08:22 | chore: Publish crates | diff --git a/Cargo.lock b/Cargo.lock
index 30431af062..2e1d043a8a 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2442,7 +2442,7 @@ checksum = "6446ced80d6c486436db5c078dde11a9f73d42b57fb273121e160b84f63d894c"
[[package]]
name = "swc"
-version = "0.88.2"
+version = "0.89.0"
dependencies = [
"ahash",
"anyhow",
@@ ... | 21 | 122 | 122 |
3bf751ac4a7e889f7e0be48272e0d16ec4fbff88 | Donny | 2021-12-01T18:33:26 | chore: Publish crates | diff --git a/Cargo.lock b/Cargo.lock
index 71bb52ae8a..79942c753d 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2581,7 +2581,7 @@ dependencies = [
[[package]]
name = "swc_css"
-version = "0.42.0"
+version = "0.43.0"
dependencies = [
"swc_css_ast",
"swc_css_codegen",
@@ -2593,7 +2593,7 @@ dependencies = [
[[p... | 9 | 40 | 40 |
f9cd49b8453428bcbca3c715ddf00897fff9c69a | Donny | 2021-12-01T12:26:31 | chore: Publish crates | diff --git a/Cargo.lock b/Cargo.lock
index ce29e5f23d..2733b7701b 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -3394,7 +3394,7 @@ dependencies = [
[[package]]
name = "swc_webpack_ast"
-version = "0.2.6"
+version = "0.2.7"
dependencies = [
"anyhow",
"rayon",
diff --git a/crates/swc_webpack_ast/Cargo.toml b/crate... | 2 | 2 | 2 |
f8fcee1c46247181b7c38fc379f30c6923002c23 | Donny | 2021-12-01T12:25:44 | chore: Publish crates | diff --git a/Cargo.lock b/Cargo.lock
index 389676bae7..ce29e5f23d 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2844,7 +2844,7 @@ dependencies = [
[[package]]
name = "swc_ecma_preset_env"
-version = "0.67.4"
+version = "0.67.5"
dependencies = [
"ahash",
"anyhow",
diff --git a/crates/swc_ecma_preset_env/Cargo.to... | 2 | 2 | 2 |
1fabb0381af7cdcc6f79ebff5ab3f749a7ec3675 | Donny | 2021-12-01T09:36:26 | chore: Publish crates | diff --git a/Cargo.lock b/Cargo.lock
index 64c08ff6b8..58714cd40c 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2572,7 +2572,7 @@ dependencies = [
[[package]]
name = "swc_css"
-version = "0.41.0"
+version = "0.42.0"
dependencies = [
"swc_css_ast",
"swc_css_codegen",
@@ -2584,7 +2584,7 @@ dependencies = [
[[p... | 9 | 40 | 40 |
563c63c2251e45ec5cd6c71e764e4749858a682a | Donny | 2021-12-01T06:32:22 | chore: Publish crates | diff --git a/Cargo.lock b/Cargo.lock
index 9c6deb27b8..64c08ff6b8 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2035,9 +2035,9 @@ dependencies = [
[[package]]
name = "reqwest"
-version = "0.11.6"
+version = "0.11.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "66d2927ca2f685faf0fc62... | 2 | 4 | 4 |
b6f92497bf7d8cd6b4a5ef0b2744a0ffaf83b475 | Donny | 2021-11-30T11:20:38 | chore: Publish crates | diff --git a/Cargo.lock b/Cargo.lock
index b73c079013..d258319df0 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -3307,7 +3307,7 @@ dependencies = [
[[package]]
name = "swc_plugin_runner"
-version = "0.18.2"
+version = "0.18.3"
dependencies = [
"abi_stable",
"anyhow",
diff --git a/crates/swc_plugin_runner/Cargo.t... | 2 | 2 | 2 |
599963495216a929b5992b3e40717d215b2c93b4 | OJ Kwon | 2021-11-30T11:19:26 | feat(plugin/runner): Supports specifying exact path for plugin (#2918) | diff --git a/crates/swc_plugin_runner/src/resolve.rs b/crates/swc_plugin_runner/src/resolve.rs
index 14372b66a7..f773f35e0b 100644
--- a/crates/swc_plugin_runner/src/resolve.rs
+++ b/crates/swc_plugin_runner/src/resolve.rs
@@ -15,6 +15,14 @@ pub fn resolve(name: &str) -> Result<Arc<PathBuf>, Error> {
let cwd = cur... | 1 | 8 | 0 |
e6957ce40052cc329869f3a1dcb5a0f4af7b3e86 | Donny | 2021-11-30T10:40:27 | chore: Publish crates | diff --git a/Cargo.lock b/Cargo.lock
index b4f63305a5..b73c079013 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2923,7 +2923,7 @@ dependencies = [
[[package]]
name = "swc_ecma_transforms_compat"
-version = "0.52.18"
+version = "0.52.19"
dependencies = [
"ahash",
"arrayvec",
diff --git a/crates/swc_ecma_transfor... | 2 | 2 | 2 |
4075ff8029b4d0a71819145dd53de061c47d9b74 | OJ Kwon | 2021-11-30T10:00:56 | perf(es/transform/compat): Migrate `optional_chaining` to `VisitMut` (#2891) | diff --git a/crates/swc_ecma_transforms_compat/src/es2020/opt_chaining.rs b/crates/swc_ecma_transforms_compat/src/es2020/opt_chaining.rs
index cda6807aa8..68edee3f4b 100644
--- a/crates/swc_ecma_transforms_compat/src/es2020/opt_chaining.rs
+++ b/crates/swc_ecma_transforms_compat/src/es2020/opt_chaining.rs
@@ -5,13 +5,1... | 1 | 132 | 124 |
12d31c997b52e36f178f3fb55d2bca82491ff7c1 | Donny | 2021-11-30T04:53:41 | chore: Publish crates | diff --git a/Cargo.lock b/Cargo.lock
index cc1e5830ba..76d0c77832 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2923,7 +2923,7 @@ dependencies = [
[[package]]
name = "swc_ecma_transforms_compat"
-version = "0.52.17"
+version = "0.52.18"
dependencies = [
"ahash",
"arrayvec",
diff --git a/crates/swc_ecma_transfor... | 2 | 2 | 2 |
073c3787f1f05d37a9159f82cf220e55aed2224b | Donny | 2021-11-30T04:11:36 | chore: Publish crates | diff --git a/Cargo.lock b/Cargo.lock
index 89d9283cf0..cc1e5830ba 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2923,7 +2923,7 @@ dependencies = [
[[package]]
name = "swc_ecma_transforms_compat"
-version = "0.52.16"
+version = "0.52.17"
dependencies = [
"ahash",
"arrayvec",
diff --git a/crates/swc_ecma_transfor... | 2 | 2 | 2 |
57fb69262d552787e4b6ee678566750eaf08e43f | Donny | 2021-11-30T02:25:38 | chore: Publish crates | diff --git a/Cargo.lock b/Cargo.lock
index e57d3ed7f6..89d9283cf0 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2572,7 +2572,7 @@ dependencies = [
[[package]]
name = "swc_css"
-version = "0.40.0"
+version = "0.41.0"
dependencies = [
"swc_css_ast",
"swc_css_codegen",
@@ -2584,7 +2584,7 @@ dependencies = [
[[p... | 9 | 40 | 40 |
9b022dbabeca38700c0e19b650cc4c4108cbc363 | Donny | 2021-11-30T01:04:41 | chore: Publish crates | diff --git a/Cargo.lock b/Cargo.lock
index 42e7fe0277..e57d3ed7f6 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1270,7 +1270,7 @@ dependencies = [
"swc_node_base",
"swc_node_bundler",
"tracing",
- "tracing-subscriber 0.3.2",
+ "tracing-subscriber 0.3.3",
]
[[package]]
@@ -3385,7 +3385,7 @@ dependencies = [
... | 2 | 5 | 5 |
167798b599ac9fe0b3d56bfb1316fcfaf0e044b0 | Donny | 2021-11-30T00:41:40 | chore: Publish crates | diff --git a/Cargo.lock b/Cargo.lock
index cdfa5ea747..80405b2ff9 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2433,7 +2433,7 @@ checksum = "6446ced80d6c486436db5c078dde11a9f73d42b57fb273121e160b84f63d894c"
[[package]]
name = "swc"
-version = "0.88.1"
+version = "0.88.2"
dependencies = [
"ahash",
"anyhow",
@@ ... | 6 | 15 | 15 |
666e3cc71ef8f9e491b45c1ff695a5d0cf21b5d3 | Donny | 2021-11-29T23:42:45 | chore: Revert #2907 | diff --git a/Cargo.lock b/Cargo.lock
index 9aeb2c14b2..cdfa5ea747 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -258,14 +258,11 @@ dependencies = [
[[package]]
name = "browserslist-rs"
-version = "0.3.2"
+version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e04119af2f8e4d2e... | 3 | 7 | 51 |
655d754d0eafd1fe47daf8141161752929dc9ca4 | Donny | 2021-11-29T18:55:52 | chore: Publish crates | diff --git a/Cargo.lock b/Cargo.lock
index 80c27195e2..9aeb2c14b2 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -115,9 +115,9 @@ dependencies = [
[[package]]
name = "anyhow"
-version = "1.0.50"
+version = "1.0.51"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ecc78c299ae753905840c5d3b... | 11 | 35 | 35 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.