8 lines
208 B
TypeScript
8 lines
208 B
TypeScript
|
import { nicelog } from '@/utils/nicelog'
|
||
|
import { refreshContent } from './functions/refreshContent'
|
||
|
;(async function () {
|
||
|
nicelog('◦ Refreshing all content')
|
||
|
await refreshContent()
|
||
|
process.exit()
|
||
|
})()
|