Skip to content

Commit

Permalink
Merge pull request #517 from bem/feature/fix-enb-make
Browse files Browse the repository at this point in the history
Fix enb make
  • Loading branch information
mishanga committed Jul 3, 2014
2 parents 807d767 + ecd23c1 commit bbfb708
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .enb/make.js
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,8 @@ function getDesktopLevels(config) {
'common.blocks',
'desktop.blocks',
'design/common.blocks',
'design/desktop.blocks'
'design/desktop.blocks',
'test.blocks'
].map(function(level) {
return config.resolvePath(level);
});
Expand All @@ -366,7 +367,8 @@ function getTouchPadLevels(config) {
'touch.blocks',
'design/common.blocks',
'design/touch.blocks',
'design/touch-pad.blocks'
'design/touch-pad.blocks',
'test.blocks'
].map(function(level) {
return config.resolvePath(level);
});
Expand All @@ -380,7 +382,8 @@ function getTouchPhoneLevels(config) {
'touch.blocks',
'design/common.blocks',
'design/touch.blocks',
'design/touch-phone.blocks'
'design/touch-phone.blocks',
'test.blocks'
].map(function(level) {
return config.resolvePath(level);
});
Expand Down

0 comments on commit bbfb708

Please sign in to comment.