mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-11-21 20:44:40 +03:00
f393f89a3f
Co-authored-by: forehalo <forehalo@gmail.com>
29 lines
692 B
JavaScript
29 lines
692 B
JavaScript
import { writeFile } from 'node:fs/promises';
|
|
import { join } from 'node:path';
|
|
import { fileURLToPath } from 'node:url';
|
|
|
|
import { AffineCanvasTextFonts } from '@blocksuite/blocks';
|
|
|
|
const fontPath = join(
|
|
fileURLToPath(import.meta.url),
|
|
'..',
|
|
'..',
|
|
'packages',
|
|
'frontend',
|
|
'core',
|
|
'public',
|
|
'fonts'
|
|
);
|
|
|
|
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`);
|
|
})
|
|
);
|