Skip to content

Commit 53122e6

Browse files
committed
Replace mentions of package-lock.json with yarn.lock
1 parent 2f21503 commit 53122e6

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

REUSE.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ path = [
3838
"triagebot.toml",
3939
"typos.toml",
4040
"package.json",
41-
"package-lock.json",
41+
"yarn.lock",
4242
"x",
4343
"x.ps1",
4444
"x.py",

src/bootstrap/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,10 @@ build/
7373
node_modules/
7474
.bin/
7575

76-
# Copy of package.json and package-lock.json, because npm requires these
76+
# Copy of package.json and yarn.lock, because yarn requires these
7777
# to be in the same directory as `node_modules`.
7878
package.json
79-
package-lock.json
79+
yarn.lock
8080

8181
# Output of the dist-related steps like dist-std, dist-rustc, and dist-docs
8282
dist/

src/bootstrap/src/core/build_steps/dist.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1199,11 +1199,11 @@ impl Step for PlainSourceTarball {
11991199
"bootstrap.example.toml",
12001200
"configure",
12011201
"license-metadata.json",
1202-
"package-lock.json",
12031202
"package.json",
12041203
"x",
12051204
"x.ps1",
12061205
"x.py",
1206+
"yarn.lock",
12071207
// tidy-alphabetical-end
12081208
];
12091209
let src_dirs = ["src", "compiler", "library", "tests", "LICENSES"];

0 commit comments

Comments
 (0)