Created
April 10, 2015 11:41
-
-
Save tavriaforever/1349dd8139ab09990892 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
// Чтобы собирать клиентский bemhtml | |
{ | |
tech: 'js', | |
mustDeps: [ | |
// обязательное | |
{ | |
block: 'i-bem', | |
tech: 'bemhtml' | |
}, | |
// какой-то блок | |
{ | |
block: 'bla', | |
tech: 'bemhtml' | |
} | |
] | |
}, | |
{ | |
mustDeps: [ | |
'block1', | |
{ | |
block: 'block2', | |
elem: '2' | |
}, | |
{ | |
block: 'block2', | |
mods: { mod2: 'v1' } | |
}, | |
{ elem: 'e1' }, | |
{ elems: ['e1', 'e2'] }, | |
{ mods: { mod1: 'val2', mod2: 'val3' } | |
], | |
shouldDeps: [ | |
'block1', | |
{ | |
block: 'block2', | |
elem: '2' | |
}, | |
{ | |
block: 'block2', | |
mods: { mod2: 'v1' } | |
}, | |
{ elem: 'e1' }, | |
{ elems: ['e1', 'e2'] }, | |
{ mods: { mod1: 'val2', mod2: 'val3' } | |
] | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment