mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-03 18:50:48 +08:00
47babe25b7
Co-authored-by: himself65 <himself65@outlook.com>
(cherry picked from commit fda89b05e7)
10 lines
228 B
JavaScript
Executable File
10 lines
228 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
import { build } from 'esbuild';
|
|
|
|
import { definePluginServerConfig } from './utils.mjs';
|
|
|
|
await build({
|
|
...definePluginServerConfig('bookmark-block'),
|
|
external: ['cheerio', 'electron', 'puppeteer'],
|
|
});
|