mirror of
https://github.com/BewlyBewly/BewlyBewly.git
synced 2025-04-14 13:15:29 +00:00
11 lines
288 B
TypeScript
11 lines
288 B
TypeScript
import fs from 'fs-extra'
|
|
import { getManifest } from '../src/manifest'
|
|
import { r, log } from './utils'
|
|
|
|
export async function writeManifest() {
|
|
await fs.writeJSON(r('extension/manifest.json'), await getManifest(), { spaces: 2 })
|
|
log('PRE', 'write manifest.json')
|
|
}
|
|
|
|
writeManifest()
|