Files
copy-tab-url/scripts/manifest.ts
2024-10-04 03:33:41 +03:00

13 lines
295 B
TypeScript

import { getManifest } from '../src/manifest'
import { r, log } from './utils'
import fs from 'fs-extra'
export async function writeManifest() {
await fs.writeJSON(r('extension/manifest.json'), await getManifest(), {
spaces: 2,
})
log('PRE', 'write manifest.json')
}
writeManifest()