-
Notifications
You must be signed in to change notification settings - Fork 20
/
.bemrc
50 lines (46 loc) · 1.51 KB
/
.bemrc
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
module.exports = {
root: true,
modules: {
'bem-lib-site': {
langs: ['uk', 'ru', 'en'],
data: {
tempFolder: 'tmp',
outputFolder: 'node_modules/bem.info-data'
},
platforms: { // TODO: make it really optional
'desktop': ['common', 'deskpad', 'desktop'],
'touch-phone': ['common', 'touch', 'touch-phone'],
'touch-pad': ['common', 'deskpad', 'touch', 'touch-pad']
},
libs: {
'bem-components': {
langs: ['uk', 'ru', 'en'],
github: {
url: 'github.com',
user: 'bem',
repo: 'bem-components'
},
templateEngine: 'BEMHTML'
},
'bem-core': {
langs: ['uk', 'ru', 'en'],
github: {
url: 'github.com',
user: 'bem',
repo: 'bem-core'
},
templateEngine: 'BEMHTML'
},
'bem-history': {
langs: ['uk', 'ru', 'en'],
github: {
url: 'github.com',
user: 'bem',
repo: 'bem-history'
},
templateEngine: 'BEMHTML_OLD'
}
}
}
}
};