109 lines
3.4 KiB
JavaScript
109 lines
3.4 KiB
JavaScript
import esbuild from 'esbuild';
|
|
import scss from 'esbuild-plugin-sass';
|
|
import fs from 'fs';
|
|
import path from 'path';
|
|
|
|
const watch = process.argv.includes('--watch') && {
|
|
onRebuild(error) {
|
|
if (error) console.error('[watch] build failed', error);
|
|
else console.log('[watch] build finished');
|
|
},
|
|
};
|
|
|
|
const ENABLE_TESTS = process.env.ENABLE_TESTS === 'true';
|
|
|
|
// see https://github.com/evanw/esbuild/issues/806#issuecomment-779138268
|
|
let skipReactImports = {
|
|
name: 'skipReactImports',
|
|
setup(build) {
|
|
build.onResolve({ filter: /^(react(-dom)?|survey-react)$/ }, (args) => {
|
|
return {
|
|
path: args.path,
|
|
namespace: `globalExternal_${args.path}`,
|
|
};
|
|
});
|
|
|
|
build.onLoad({ filter: /.*/, namespace: 'globalExternal_react' }, () => {
|
|
return {
|
|
contents: `module.exports = globalThis.React`,
|
|
loader: 'js',
|
|
};
|
|
});
|
|
|
|
build.onLoad({ filter: /.*/, namespace: 'globalExternal_react-dom' }, () => {
|
|
return {
|
|
contents: `module.exports = globalThis.ReactDOM`,
|
|
loader: 'js',
|
|
};
|
|
});
|
|
build.onLoad({ filter: /.*/, namespace: 'globalExternal_survey-react' }, () => {
|
|
return {
|
|
contents: `module.exports = globalThis.Survey`,
|
|
loader: 'js',
|
|
};
|
|
});
|
|
},
|
|
};
|
|
|
|
const entryPoints = [
|
|
'components/toolbar/toolbar.tsx',
|
|
'components/sidebar/sidebar.tsx',
|
|
'components/report-window/report-window.tsx',
|
|
'background.ts',
|
|
'diag.tsx',
|
|
'styles/global.scss',
|
|
'styles/fonts.scss',
|
|
];
|
|
|
|
if (ENABLE_TESTS) {
|
|
entryPoints.push('tests/test-content-script.js');
|
|
}
|
|
|
|
esbuild
|
|
.build({
|
|
entryPoints,
|
|
bundle: true,
|
|
// minify: true,
|
|
outdir: './lib',
|
|
loader: { '.woff': 'file', '.woff2': 'file' },
|
|
plugins: [scss(), skipReactImports],
|
|
define: {
|
|
PLUGIN_NAME: '"Rentgen"',
|
|
PLUGIN_URL: '"https://addons.mozilla.org/pl/firefox/addon/rentgen/"',
|
|
ENABLE_TESTS: String(ENABLE_TESTS),
|
|
},
|
|
external: ['react', 'react-dom', 'survey-react'],
|
|
watch,
|
|
})
|
|
.then(() => {
|
|
console.log('Add-on was built');
|
|
|
|
// Modify manifest.json to include test content script when ENABLE_TESTS=true
|
|
if (ENABLE_TESTS) {
|
|
const manifestPath = path.join(process.cwd(), 'manifest.json');
|
|
const manifest = JSON.parse(fs.readFileSync(manifestPath, 'utf-8'));
|
|
|
|
// Add content_scripts for testing
|
|
if (!manifest.content_scripts) {
|
|
manifest.content_scripts = [];
|
|
}
|
|
|
|
// Check if test script is already added
|
|
const hasTestScript = manifest.content_scripts.some(
|
|
cs => cs.js && cs.js.includes('lib/tests/test-content-script.js')
|
|
);
|
|
|
|
if (!hasTestScript) {
|
|
manifest.content_scripts.push({
|
|
matches: ['<all_urls>'],
|
|
js: ['lib/tests/test-content-script.js'],
|
|
run_at: 'document_start'
|
|
});
|
|
|
|
fs.writeFileSync(manifestPath, JSON.stringify(manifest, null, 4));
|
|
console.log('Added test content script to manifest.json');
|
|
}
|
|
}
|
|
})
|
|
.catch(() => process.exit(1));
|