mirror of
https://github.com/primedigitaltech/azon_seeker.git
synced 2026-01-19 13:13:22 +08:00
13 lines
301 B
TypeScript
13 lines
301 B
TypeScript
import fs from 'fs-extra';
|
|
import { getManifest } from '../src/manifest';
|
|
import { log, r } from './utils';
|
|
|
|
export async function writeManifest() {
|
|
await fs.writeJSON(r('extension/manifest.json'), await getManifest(), {
|
|
spaces: 2,
|
|
});
|
|
log('PRE', 'write manifest.json');
|
|
}
|
|
|
|
writeManifest();
|