mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-15 09:32:51 +03:00
265ee81666
plugin system need redesign
40 lines
1.3 KiB
TypeScript
40 lines
1.3 KiB
TypeScript
import { createConfiguration, rootPath } from './config.js';
|
|
import { merge } from 'webpack-merge';
|
|
import { join, resolve } from 'node:path';
|
|
import type { BuildFlags } from '@affine/cli/config';
|
|
import { getRuntimeConfig } from './runtime-config.js';
|
|
import HTMLPlugin from 'html-webpack-plugin';
|
|
|
|
import { gitShortHash } from './s3-plugin.js';
|
|
|
|
const DESCRIPTION = `There can be more than Notion and Miro. AFFiNE is a next-gen knowledge base that brings planning, sorting and creating all together.`;
|
|
|
|
export default async function (cli_env: any, _: any) {
|
|
const flags: BuildFlags = JSON.parse(
|
|
Buffer.from(cli_env.flags, 'hex').toString('utf-8')
|
|
);
|
|
console.log('build flags', flags);
|
|
const runtimeConfig = getRuntimeConfig(flags);
|
|
console.log('runtime config', runtimeConfig);
|
|
const config = createConfiguration(flags, runtimeConfig);
|
|
return merge(config, {
|
|
entry: {
|
|
app: resolve(rootPath, 'src/index.tsx'),
|
|
},
|
|
plugins: [
|
|
new HTMLPlugin({
|
|
template: join(rootPath, '.webpack', 'template.html'),
|
|
inject: 'body',
|
|
scriptLoading: 'module',
|
|
minify: false,
|
|
chunks: ['app'],
|
|
filename: 'index.html',
|
|
templateParameters: {
|
|
GIT_SHORT_SHA: gitShortHash(),
|
|
DESCRIPTION,
|
|
},
|
|
}),
|
|
],
|
|
});
|
|
}
|