fix(cpa): dependency tag (#5768)

This commit is contained in:
Elliot DeNolf
2024-04-10 11:25:54 -04:00
committed by GitHub
parent 9841731ae7
commit 3677a59a78

View File

@@ -191,10 +191,10 @@ function installAndConfigurePayload(
async function installDeps(projectDir: string, packageManager: PackageManager, dbType: DbType) {
const packagesToInstall = ['payload', '@payloadcms/next', '@payloadcms/richtext-lexical'].map(
(pkg) => `${pkg}@alpha`,
(pkg) => `${pkg}@beta`,
)
packagesToInstall.push(`@payloadcms/db-${dbType}@alpha`)
packagesToInstall.push(`@payloadcms/db-${dbType}@beta`)
let exitCode = 0
switch (packageManager) {