#!/usr/bin/env node
/* eslint-disable @typescript-eslint/no-require-imports */
const fs = require('fs');
const path = require('path');
const { build } = require('esbuild');
const ROOT_DIR = path.join(__dirname, '..');
const SRC_DIR = path.join(ROOT_DIR, 'src');
const DIST_DIR = path.join(ROOT_DIR, 'dist');
async function buildPlugin() {
console.log('Building doc-mode plugin with esbuild...');
if (fs.existsSync(DIST_DIR)) {
fs.rmSync(DIST_DIR, { recursive: true });
}
fs.mkdirSync(DIST_DIR);
// Background script — runs in the host page context, registers UI + hooks.
console.log('Building plugin.js (background)...');
await build({
entryPoints: [path.join(SRC_DIR, 'background.ts')],
bundle: true,
outfile: path.join(DIST_DIR, 'plugin.js'),
platform: 'browser',
target: 'es2020',
format: 'iife',
globalName: 'DocModePlugin',
logLevel: 'info',
minify: true,
sourcemap: false,
});
// Editor bundle — runs inside the iframe, hosts TipTap.
console.log('Building editor.js (iframe)...');
await build({
entryPoints: [path.join(SRC_DIR, 'ui', 'editor.ts')],
bundle: true,
outfile: path.join(DIST_DIR, 'editor.js'),
platform: 'browser',
target: 'es2020',
format: 'iife',
logLevel: 'info',
minify: true,
sourcemap: false,
});
// The iframe is loaded via blob URL, so relative ` inside the JS so the HTML parser doesn't close the tag early.
const safeEditorJs = editorJs.replace(/<\/script>/gi, '<\\/script>');
const inlinedHtml = rawHtml.replace(
/`,
);
fs.writeFileSync(path.join(DIST_DIR, 'index.html'), inlinedHtml);
fs.copyFileSync(
path.join(SRC_DIR, 'manifest.json'),
path.join(DIST_DIR, 'manifest.json'),
);
fs.copyFileSync(path.join(SRC_DIR, 'icon.svg'), path.join(DIST_DIR, 'icon.svg'));
console.log('\nBuild complete! Output in dist/');
}
buildPlugin().catch((err) => {
console.error('Build failed:', err);
process.exit(1);
});