-
Notifications
You must be signed in to change notification settings - Fork 15
/
index.js
66 lines (56 loc) · 1.11 KB
/
index.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
/*!
* V4Fire Client Core
* https://github.com/V4Fire/Client
*
* Released under the MIT license
* https://github.com/V4Fire/Client/blob/master/LICENSE
*/
const
components = (require('@config/config').build.components ?? []).map(({name}) => name);
package('p-v4-components-demo')
.extends('i-static-page')
.dependencies(
'b-v4-component-demo',
'p-v4-dynamic-page1',
'p-v4-dynamic-page2',
'p-v4-dynamic-page3',
'b-remote-provider',
'b-router',
'b-dynamic-page',
'b-tree',
'b-list',
'b-form',
'b-button',
'b-checkbox',
'b-radio-button',
'b-input-hidden',
'b-input',
'b-textarea',
'b-select',
'b-select-date',
'b-virtual-scroll',
'b-virtual-scroll-new',
'b-window',
'b-sidebar',
'b-slider',
'b-bottom-slide',
'b-icon',
'b-image',
'b-dummy',
'b-dummy-text',
'b-dummy-async-render',
'b-dummy-module-loader',
'b-dummy-lfc',
'b-dummy-watch',
'b-dummy-sync',
'b-dummy-state',
'b-dummy-control-list',
'b-dummy-decorators',
'b-scroll-element-dummy',
components
)
.libs([
'core/cookies',
'core/kv-storage/engines/cookie',
'models/demo/form'
]);