c9b7d328fe
These were needed when the docs lived in a different repo, but they don't any more so we can get rid of them. ### Change Type - [x] `internal` — Does not affect user-facing stuff - [x] `chore` — Updating dependencies, other boring stuff
8 lines
246 B
TypeScript
8 lines
246 B
TypeScript
import { nicelog } from '@/utils/nicelog'
|
|
import { connect } from './functions/connect'
|
|
;(async function () {
|
|
nicelog('◦ Resetting database...')
|
|
await connect({ reset: true, mode: 'readwrite' })
|
|
nicelog('✔ Complete!')
|
|
process.exit()
|
|
})()
|