mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
Merge remote-tracking branch 'upstream/main'
This commit is contained in:
commit
20829938bc
4 changed files with 8 additions and 3 deletions
|
@ -1 +1,2 @@
|
||||||
nodeLinker: node-modules
|
nodeLinker: node-modules
|
||||||
|
enableScripts: false
|
||||||
|
|
|
@ -28,7 +28,11 @@ pub fn setup_yarn(args: YarnArgs) {
|
||||||
.arg("--ignore-scripts"),
|
.arg("--ignore-scripts"),
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
run_command(Command::new(&args.yarn_bin).arg("install"));
|
run_command(
|
||||||
|
Command::new(&args.yarn_bin)
|
||||||
|
.arg("install")
|
||||||
|
.arg("--immutable"),
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
std::fs::write(args.stamp, b"").unwrap();
|
std::fs::write(args.stamp, b"").unwrap();
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit 6552c95a81d162422b2a50126547cc7f1b50c2fd
|
Subproject commit 60bd4d4834b57b85915f52eb978935ff6b8c1425
|
|
@ -1 +1 @@
|
||||||
Subproject commit dad4e2736a2b53dcdb52d79b5703dd464c05d666
|
Subproject commit fd5f984785ad07a0d3dbd893ee3d7e3671eaebd6
|
Loading…
Reference in a new issue