Skip to content

Commit 4ffb21e

Browse files
authoredNov 18, 2024··
fix(es/plugin): Migrate swc plugin new to use .cargo/config.toml (#9740)
**Description:** As per https://doc.rust-lang.org/cargo/reference/config.html we should be generating a `.cargo/config.toml` instead of `.cargo/config` when creating a new plugin **BREAKING CHANGE:** Technically this means users **must** have a toolchain > 1.38 (released september, 2019 - so five years ago). Given that: - the [public documentation for swc plugins](https://swc.rs/docs/plugin/ecmascript/getting-started#install-rust) link directly to the latest version of the rust toolchain (currently 1.81) - 1.38 was > **five years ago** - This only impacts **new** usages of `swc plugin new ..` - README.md specifies that the `swc-project/swc` MSRV is 1.73 anyways - whilst that doesn't **specifically** refer to **generated** code, it shows the intent of the project :) I don't believe it will have material impact. I will raise a separate PR to generate the correct MSRV for both `swc-project/swc` **and** the generated plugin itself.
1 parent d437fd8 commit 4ffb21e

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed
 

‎.changeset/sixty-walls-hang.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
swc_core: patch
3+
swc_cli_impl: patch
4+
---
5+
6+
Migrate to config.toml to fix warning

‎crates/swc_cli_impl/src/commands/plugin.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ lto = true
165165
serde = "1"
166166
swc_core = {{ version = "{}", features = ["ecma_plugin_transform"] }}
167167
168-
# .cargo/config defines few alias to build plugin.
168+
# .cargo/config.toml defines few alias to build plugin.
169169
# cargo build-wasi generates wasm-wasi32 binary
170170
# cargo build-wasm32 generates wasm32-unknown-unknown binary.
171171
"#,
@@ -185,11 +185,11 @@ swc_core = {{ version = "{}", features = ["ecma_plugin_transform"] }}
185185
PluginTargetType::Wasm32Wasi => "build-wasi",
186186
};
187187

188-
// Create cargo config for build target
188+
// Create `.cargo/config.toml` file for build target
189189
let cargo_config_path = path.join(".cargo");
190190
create_dir_all(&cargo_config_path).context("`create_dir_all` failed")?;
191191
fs::write(
192-
cargo_config_path.join("config"),
192+
cargo_config_path.join("config.toml"),
193193
r#"# These command aliases are not final, may change
194194
[alias]
195195
# Alias to build actual plugin binary for the specified target.

0 commit comments

Comments
 (0)
Please sign in to comment.