Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/core/src/scripts/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ export async function build (
if (prisma) {
if (frozen) {
await validateArtifacts(cwd, system)
console.log('✨ GraphQL and Prisma schemas are up to date')
console.log('✨ GraphQL and Prisma schemas are up to date') // TODO: validating?
} else {
await generateArtifacts(cwd, system)
console.log('✨ Generated GraphQL and Prisma schemas')
console.log('✨ Generated GraphQL and Prisma schemas') // TODO: generating?
}

await generateTypes(cwd, system)
Expand Down
12 changes: 5 additions & 7 deletions packages/core/src/scripts/dev.ts
Original file line number Diff line number Diff line change
Expand Up @@ -263,22 +263,20 @@ export async function dev (

let nextApp
if (!system.config.ui?.isDisabled && ui) {
const paths = system.getPaths(cwd)
await fsp.rm(paths.admin, { recursive: true, force: true })
if (!expressServer || !context) throw new TypeError('Error trying to prepare the Admin UI')

console.log('✨ Generating Admin UI code')
const paths = system.getPaths(cwd)
await fsp.rm(paths.admin, { recursive: true, force: true })
await generateAdminUI(system.config, system.graphQLSchema, system.adminMeta, paths.admin, false)

console.log('✨ Preparing Admin UI app')
console.log('✨ Preparing Admin UI')
nextApp = next({ dev: true, dir: paths.admin })
await nextApp.prepare()

expressServer.use(createAdminUIMiddlewareWithNextApp(system.config, context, nextApp))
console.log(`✅ Admin UI ready`)
}

if (nextApp && expressServer && context) {
expressServer.use(createAdminUIMiddlewareWithNextApp(system.config, context, nextApp))
}
hasAddedAdminUIMiddleware = true
initKeystonePromiseResolve()

Expand Down
3 changes: 1 addition & 2 deletions packages/core/src/scripts/start.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,9 @@ export async function start (

console.log(`✅ GraphQL API ready`)
if (!system.config.ui?.isDisabled && ui) {
console.log('✨ Preparing Admin UI Next.js app')
console.log('✨ Preparing Admin UI')
const nextApp = next({ dev: false, dir: paths.admin })
await nextApp.prepare()

expressServer.use(await createAdminUIMiddlewareWithNextApp(system.config, keystone.context, nextApp))
console.log(`✅ Admin UI ready`)
}
Expand Down
Loading