UNPKG

452 BJavaScriptView Raw
1export default process.env.CI
2 ? {}
3 : {
4 umd: {
5 name: 'F2',
6 file: 'index',
7 minFile: true,
8 },
9 entry: ['src/index.ts', 'src/jsx/jsx-runtime.ts'],
10 overridesByEntry: {
11 'src/index.ts': {
12 umd: { name: 'F2', file: 'index' },
13 },
14 // for weixin miniapp
15 'src/jsx/jsx-runtime.ts': {
16 umd: { name: 'F2JSXRuntime', file: 'jsx-runtime' },
17 },
18 },
19 };