We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce46703 commit d5ca588Copy full SHA for d5ca588
src/actions/CreateYarn2ConfigsAction.ts
@@ -30,6 +30,9 @@ export class CreateYarn2ConfigsAction extends Action {
30
// Remove old .yarnrc
31
await removeFile(withCurrentDir("./.yarnrc"));
32
33
+ // Remove package-lock.json
34
+ await removeFile(withCurrentDir("./package-lock.json"));
35
+
36
// Configure .gitignore for yarn
37
await writeContentToFile(
38
withCurrentDir("./.gitignore"),
0 commit comments