forked from nteract/nteract
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyleguide.config.js
99 lines (94 loc) · 2.49 KB
/
styleguide.config.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
// @format
const path = require("path");
const reactDocgenTypescript = require("react-docgen-typescript").withCustomConfig(
"./tsconfig.base.json"
);
const babelFlowConfig = require("./babel.flow.config");
const babelTypescriptConfig = require("./babel.typescript.config");
var {
exclude,
mergeDefaultAliases
} = require("./packages/webpack-configurator");
const typescriptPropsParser = reactDocgenTypescript.parse;
module.exports = {
title: "nteract components",
defaultExample: false,
sections: [
{
name: "@nteract/presentational-components",
components: "packages/presentational-components/src/components/*.tsx"
},
{
name: "@nteract/outputs",
components: "packages/outputs/src/components/*.js"
},
{
name: "@nteract/outputs/media",
components: "packages/outputs/src/components/media/*.js",
content: "packages/outputs/src/components/media/index.md",
ignore: "packages/outputs/src/components/media/index.js"
},
{
name: "@mybinder/host-cache",
components: "packages/host-cache/src/components/*.tsx",
propsParser: typescriptPropsParser
},
{
name: "@nteract/directory-listing",
components: "packages/directory-listing/src/components/*.js"
},
{
name: "@nteract/markdown",
content: "packages/markdown/examples.md"
},
{
name: "@nteract/mathjax",
content: "packages/mathjax/examples.md"
}
],
// For overriding the components styleguidist uses
styleguideComponents: {
LogoRenderer: path.join(
__dirname,
"packages",
"styleguide-components",
"logo.js"
)
},
compilerConfig: {
// Allow us to use {...props}
objectAssign: "Object.assign",
transforms: {
// whether template strings get transpiled (we don't want it to, so that we can use the native functionality)
templateString: false
}
},
webpackConfig: {
node: {
fs: "empty",
child_process: "empty",
net: "empty"
},
resolve: {
mainFields: ["nteractDesktop", "es2015", "jsnext:main", "module", "main"],
extensions: [".js", ".jsx", ".ts", ".tsx"],
alias: mergeDefaultAliases()
},
module: {
rules: [
{
test: /\.jsx?$/,
exclude,
loader: "babel-loader",
options: babelFlowConfig()
},
{
test: /\.tsx?$/,
exclude,
loader: "babel-loader",
options: babelTypescriptConfig()
}
]
}
}
};