-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathcomponent-manifest.mjs
More file actions
64 lines (62 loc) · 1.58 KB
/
component-manifest.mjs
File metadata and controls
64 lines (62 loc) · 1.58 KB
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
export const v2Components = [
{
sourceDir: 'header',
sourcePath: 'layout/header',
exportNames: ['header', 'layout/header']
},
{
sourceDir: 'loginButton',
sourcePath: 'auth/loginButton',
exportNames: ['loginButton', 'login-button', 'auth/login-button']
},
{
sourceDir: 'signupButton',
sourcePath: 'auth/signupButton',
exportNames: ['auth/signup-button', 'signup-button']
},
{
sourceDir: 'photoCapture',
sourcePath: 'media/photoCapture',
exportNames: ['media/photo-capture', 'photo-capture']
},
{
sourceDir: 'button',
sourcePath: 'actions/button',
exportNames: ['actions/button', 'button']
},
{
sourceDir: 'footer',
sourcePath: 'layout/footer',
exportNames: ['footer', 'layout/footer']
},
{
sourceDir: 'select',
sourcePath: 'forms/select',
exportNames: ['forms/select', 'select']
},
{
sourceDir: 'combobox',
sourcePath: 'forms/combobox',
exportNames: ['forms/combobox', 'combobox']
}
]
export const componentEntries = Object.fromEntries(
v2Components.map(({ sourceDir, sourcePath = sourceDir }) => [
sourceDir,
{
import: `./src/v2/components/${sourcePath}/index.ts`
}
])
)
export const componentExports = Object.fromEntries(
v2Components.flatMap(({ sourceDir, exportNames }) =>
exportNames.map(exportName => [
`./components/${exportName}`,
{
types: `./dist/components/${sourceDir}/index.d.ts`,
import: `./dist/components/${sourceDir}/index.esm.js`,
require: `./dist/components/${sourceDir}/index.js`
}
])
)
)