8 lines
198 B
TypeScript
8 lines
198 B
TypeScript
|
|
import { executePrismaCommand } from './executeCommand'
|
||
|
|
|
||
|
|
const commandToExecute = process.argv.pop()
|
||
|
|
|
||
|
|
if (!commandToExecute) process.exit(1)
|
||
|
|
|
||
|
|
executePrismaCommand(commandToExecute, { force: true })
|