Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for issue of Duplicate Workspace in yarn berry (fix: #16110) #16924

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions app-vite/lib/modes/capacitor/capacitor-installation.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import fs from 'node:fs'
import fse from 'fs-extra'
import path from 'path'
import compileTemplate from 'lodash/template.js'
import inquirer from 'inquirer'
import fglob from 'fast-glob'
Expand Down Expand Up @@ -61,6 +62,10 @@ export async function addMode ({
nodePackager: nodePackager.name
}

if (nodePackager.name === 'yarn' && nodePackager.majorVersion > 1){
fse.ensureFileSync(path.resolve(appPaths.capacitorDir,'yarn.lock'))
}

fglob.sync([ '**/*' ], {
cwd: appPaths.resolve.cli('templates/capacitor')
}).forEach(filePath => {
Expand Down