diff options
| author | Matthias Krüger <476013+matthiaskrgr@users.noreply.github.com> | 2025-07-23 15:59:33 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-23 15:59:33 +0200 |
| commit | d444815a31c9ed80e90dfd80f8dd371c915bfafd (patch) | |
| tree | f5cbbadfc4e360863ab2a0b6456446e472ebe259 /src/bootstrap | |
| parent | 8400f1429bd65cc3d40a5165b221d2a466c693af (diff) | |
| parent | 25bbaf0d5cb212d2d163c244a3ead678bd93f462 (diff) | |
| download | rust-d444815a31c9ed80e90dfd80f8dd371c915bfafd.tar.gz rust-d444815a31c9ed80e90dfd80f8dd371c915bfafd.zip | |
Rollup merge of #144315 - lolbinarycat:bootstrap-dist-package.json, r=Kobzol
bootstrap: add package.json and package-lock.json to dist tarball this ensures that js-related tests can still be run from within such a dist tarball. followup to rust-lang/rust#142924 r? ```````@Kobzol```````
Diffstat (limited to 'src/bootstrap')
| -rw-r--r-- | src/bootstrap/src/core/build_steps/dist.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/bootstrap/src/core/build_steps/dist.rs b/src/bootstrap/src/core/build_steps/dist.rs index 39e4fb2ac01..c8a54ad250c 100644 --- a/src/bootstrap/src/core/build_steps/dist.rs +++ b/src/bootstrap/src/core/build_steps/dist.rs @@ -1068,6 +1068,8 @@ impl Step for PlainSourceTarball { "bootstrap.example.toml", "configure", "license-metadata.json", + "package-lock.json", + "package.json", "x", "x.ps1", "x.py", |
