mirror of
https://github.com/LukeHagar/vercel.git
synced 2025-12-10 12:57:47 +00:00
[fs-detectors] use project path instead of name for turbo filter (#9210)
Fixes: https://github.com/orgs/vercel/discussions/1218
This commit is contained in:
@@ -66,7 +66,7 @@ export async function getMonorepoDefaultSettings(
|
|||||||
|
|
||||||
return {
|
return {
|
||||||
monorepoManager: 'turbo',
|
monorepoManager: 'turbo',
|
||||||
buildCommand: `cd ${relativeToRoot} && npx turbo run build --filter=${projectName}...`,
|
buildCommand: `cd ${relativeToRoot} && npx turbo run build --filter={${projectPath}}...`,
|
||||||
installCommand: `cd ${relativeToRoot} && ${packageManager} install`,
|
installCommand: `cd ${relativeToRoot} && ${packageManager} install`,
|
||||||
commandForIgnoringBuildStep: `cd ${relativeToRoot} && npx turbo-ignore`,
|
commandForIgnoringBuildStep: `cd ${relativeToRoot} && npx turbo-ignore`,
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -37,7 +37,8 @@ describe('getMonorepoDefaultSettings', () => {
|
|||||||
const expectedResultMap: Record<string, Record<string, string>> = {
|
const expectedResultMap: Record<string, Record<string, string>> = {
|
||||||
turbo: {
|
turbo: {
|
||||||
monorepoManager: 'turbo',
|
monorepoManager: 'turbo',
|
||||||
buildCommand: 'cd ../.. && npx turbo run build --filter=app-1...',
|
buildCommand:
|
||||||
|
'cd ../.. && npx turbo run build --filter={packages/app-1}...',
|
||||||
installCommand: 'cd ../.. && yarn install',
|
installCommand: 'cd ../.. && yarn install',
|
||||||
commandForIgnoringBuildStep: 'cd ../.. && npx turbo-ignore',
|
commandForIgnoringBuildStep: 'cd ../.. && npx turbo-ignore',
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user