-
Notifications
You must be signed in to change notification settings - Fork 1
/
.fatherrc.ts
68 lines (66 loc) · 1.73 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
import { IBundleOptions } from 'father';
const options: IBundleOptions = {
cjs: 'rollup',
esm: 'rollup',
// @ts-ignore
doc: {
menu: [
{ name: '前言', route: '/' },
{
name: '示例',
menu: [
{
name: 'umi-origin-test',
},
{
name: 'my-test',
},
],
},
{
name: '组件库',
menu: [
{
name: '前言',
route: '/@ml/rc',
},
],
},
],
// 改为这个主题是因为docz-them-umi有各种bug
// 这个主题会在控制台报:Module not found: Can't resolve '@microsoft/typescript-etw' in 'C:\my\my-code\ml-core\node_modules\prettier',暂时未找到解决办法
theme: 'docz-theme-ztopia',
typescript: true,
src: 'packages/',
port: 2000,
dest: 'dist/docs',
title: '单体式仓库',
themeConfig: {
// logo: {
// src: './public/logo.png',
// },
// 貌似没什么卵用
// showMarkdownEditButton: false,
// showPlaygroundEditor: false,
// 代码主题,配合dracula.css使用
// codemirrorTheme: 'dracula',
},
//@ts-ignore
// docz文档中遗漏了这个配置项
htmlContext: {
// @ts-ignore
// head: {
// links: [
// {
// rel: 'stylesheet',
// href: 'https://codemirror.net/theme/dracula.css',
// },
// ],
// },
},
},
// 这种方式打包会报错,所以无解https://github.com/umijs/father/issues/175#L195
// 更加是否有lerna.json文件来决定是否启用这个配置,看源码就知道
// pkgs: ['@demo/umi-origin-test', '@demo/my-test'],
};
export default options;