forked from lusess123/web-pdm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.fatherrc.ts
48 lines (39 loc) · 1.1 KB
/
.fatherrc.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import { defineConfig } from 'father';
import { readdirSync } from 'fs';
import { join } from 'path';
// utils must build before core
// runtime must build before renderer-react
// components dependencies order: form -> table -> list
// const headPkgs: string[] = ['button', 'tag']; // 添加button和tag
// const tailPkgs = readdirSync(join(__dirname, 'packages')).filter(
// (pkg) => pkg.charAt(0) !== '.' && !headPkgs.includes(pkg),
// );
const pkgs = [ "web-pdm-core" , "web-pdm-lib" ]
const type = process.env.BUILD_TYPE;
let config = {};
if (type === 'lib') {
config = {
cjs: {},
esm: false,
runtimeHelpers: true,
pkgs,
extraBabelPlugins: [
['babel-plugin-import', { libraryName: 'antd', libraryDirectory: 'es', style: true }, 'antd'],
],
};
}
if (type === 'es') {
config = {
cjs: false,
esm: {
type: 'babel',
},
runtimeHelpers: true,
pkgs,
extraBabelPlugins: [
// [require('./scripts/replaceLib')],
['babel-plugin-import', { libraryName: 'antd', libraryDirectory: 'es', style: true }, 'antd'],
],
};
}
export default config;