mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-11-23 13:53:47 +03:00
30 lines
788 B
JavaScript
30 lines
788 B
JavaScript
import { writeFile } from 'node:fs/promises';
|
|
import { join } from 'node:path';
|
|
import { fileURLToPath } from 'node:url';
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-restricted-imports
|
|
import { AffineCanvasTextFonts } from '@blocksuite/blocks/dist/surface-block/consts.js';
|
|
|
|
const fontPath = join(
|
|
fileURLToPath(import.meta.url),
|
|
'..',
|
|
'..',
|
|
'packages',
|
|
'frontend',
|
|
'web',
|
|
'dist',
|
|
'assets'
|
|
);
|
|
|
|
await Promise.all(
|
|
AffineCanvasTextFonts.map(async ({ url }) => {
|
|
const buffer = await fetch(url).then(res =>
|
|
res.arrayBuffer().then(res => Buffer.from(res))
|
|
);
|
|
const filename = url.split('/').pop();
|
|
const distPath = join(fontPath, filename);
|
|
await writeFile(distPath, buffer);
|
|
console.info(`Downloaded ${distPath} successfully`);
|
|
})
|
|
);
|