-
Notifications
You must be signed in to change notification settings - Fork 1
/
.umirc.js
133 lines (126 loc) · 3.16 KB
/
.umirc.js
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
import { readdirSync } from 'fs';
import chalk from 'chalk';
import { join } from 'path';
const headPkgList = [];
// utils must build before core
// runtime must build before renderer-react
const pkgList = readdirSync(join(__dirname, 'packages')).filter(
(pkg) => pkg.charAt(0) !== '.' && !headPkgList.includes(pkg),
);
const alias = pkgList.reduce((pre, pkg) => {
pre[`@lekp/pro-${pkg}`] = join(__dirname, 'packages', pkg, 'src');
return {
...pre,
};
}, {});
console.log(`🌼 alias list \n${chalk.blue(Object.keys(alias).join('\n'))}`);
const tailPkgList = pkgList
.map((path) => [join('packages', path, 'src')])
.reduce((acc, val) => acc.concat(val), []);
const isProduction = process.env.NODE_ENV === 'production';
export default {
title: 'LekpComponents',
mode: 'site',
logo: 'https://upload.wikimedia.org/wikipedia/commons/6/67/Firefox_Logo%2C_2017.svg',
extraBabelPlugins: [
[
'import',
{
libraryName: 'antd',
libraryDirectory: 'es',
style: true,
},
],
],
publicPath: process.env.NODE_ENV === 'production' ? '/pro-components/' : '/pro-components/',
metas: [
{
property: 'og:site_name',
content: 'LekpComponents',
},
{
'data-rh': 'keywords',
property: 'og:image',
content: '',
},
{
property: 'og:description',
content: '描述',
},
{
name: 'keywords',
content: '关键字 关键字1 关键字2',
},
{
name: 'description',
content: '介绍文字',
},
{
name: 'apple-mobile-web-app-capable',
content: 'yes',
},
{
name: 'apple-mobile-web-app-status-bar-style"',
content: 'black-translucent',
},
],
alias,
// 用于切换 antd 暗黑模式
// antd: {
// dark: true,
// },
resolve: { includes: [...tailPkgList, 'docs'] },
navs: [
null,
{
title: 'GitHub',
path: 'https://github.com/lgoweb/pro-components',
},
],
// 统计访问量
// analytics: isProduction ?
// {
// ga: 'UA-173569162-1',
// } :
// false,
hash: true,
exportStatic: {},
ssr: {
devServerRender: false,
},
exportStatic: {},
// cdn挂载
externals:
process.env.NODE_ENV === 'development'
? {
react: 'window.React',
'react-dom': 'window.ReactDOM',
moment: 'window.moment',
antd: 'window.antd',
}
: {},
targets: {
chrome: 80,
firefox: false,
safari: false,
edge: false,
ios: false,
},
theme: {
'@s-site-menu-width': '208px',
},
// 开发模式下线上依赖 link
links:
process.env.NODE_ENV === 'development'
? ['https://gw.alipayobjects.com/os/lib/antd/4.6.6/dist/antd.css']
: [],
scripts:
process.env.NODE_ENV === 'development'
? [
'https://gw.alipayobjects.com/os/lib/react/16.13.1/umd/react.development.js',
'https://gw.alipayobjects.com/os/lib/react-dom/16.13.1/umd/react-dom.development.js',
'https://gw.alipayobjects.com/os/lib/moment/2.29.0/min/moment-with-locales.js',
'https://gw.alipayobjects.com/os/lib/antd/4.6.6/dist/antd-with-locales.js',
]
: [],
};