mirror of
https://github.com/chenasraf/copy-tab-url.git
synced 2026-05-17 17:38:15 +00:00
13 lines
295 B
TypeScript
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()
|