mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-12 12:28:42 +00:00
12 lines
257 B
JavaScript
Executable File
12 lines
257 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
import { context } from 'esbuild';
|
|
|
|
import { definePluginServerConfig } from './utils.mjs';
|
|
|
|
const plugin = await context({
|
|
...definePluginServerConfig('bookmark-block'),
|
|
external: ['cheerio', 'electron'],
|
|
});
|
|
|
|
await plugin.watch();
|