mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-11-24 10:24:53 +03:00
51 lines
1.5 KiB
JavaScript
51 lines
1.5 KiB
JavaScript
import { resolve } from 'node:path';
|
|
|
|
import { fileURLToPath } from 'url';
|
|
|
|
export const root = fileURLToPath(new URL('..', import.meta.url));
|
|
export const NODE_MAJOR_VERSION = 18;
|
|
|
|
const nativeNodeModulesPlugin = {
|
|
name: 'native-node-modules',
|
|
setup(build) {
|
|
// Mark native Node.js modules as external
|
|
build.onResolve({ filter: /\.node$/, namespace: 'file' }, args => {
|
|
return { path: args.path, external: true };
|
|
});
|
|
},
|
|
};
|
|
|
|
// List of env that will be replaced by esbuild
|
|
const ENV_MACROS = ['AFFINE_GOOGLE_CLIENT_ID', 'AFFINE_GOOGLE_CLIENT_SECRET'];
|
|
|
|
/** @return {{main: import('esbuild').BuildOptions, preload: import('esbuild').BuildOptions}} */
|
|
export const config = () => {
|
|
const define = Object.fromEntries(
|
|
ENV_MACROS.map(key => [
|
|
'process.env.' + key,
|
|
JSON.stringify(process.env[key] ?? ''),
|
|
])
|
|
);
|
|
return {
|
|
main: {
|
|
entryPoints: [resolve(root, './layers/main/src/index.ts')],
|
|
outdir: resolve(root, './dist/layers/main'),
|
|
bundle: true,
|
|
target: `node${NODE_MAJOR_VERSION}`,
|
|
platform: 'node',
|
|
external: ['electron', 'yjs', 'better-sqlite3'],
|
|
plugins: [nativeNodeModulesPlugin],
|
|
define: define,
|
|
},
|
|
preload: {
|
|
entryPoints: [resolve(root, './layers/preload/src/index.ts')],
|
|
outdir: resolve(root, './dist/layers/preload'),
|
|
bundle: true,
|
|
target: `node${NODE_MAJOR_VERSION}`,
|
|
platform: 'node',
|
|
external: ['electron'],
|
|
define: define,
|
|
},
|
|
};
|
|
};
|