Guest User

Untitled

a guest
Jan 21st, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. MAKE.decl('Arch', {
  2.  
  3.     getLibraries: function() {
  4.  
  5.         return {
  6.             'bem-bl': {
  7.                 type: 'git',
  8.                 url: 'git://github.com/bem/bem-bl.git',
  9.                 treeish: '0.2'
  10.             }
  11.         };
  12.  
  13.     },
  14.  
  15.     getBundlesLevels: function(from) {
  16.  
  17.         console.log('from ', from);
  18.  
  19.         return ['../'];
  20.  
  21.     },
  22.  
  23.     getBlocksLevels: function() {
  24.  
  25.         return [
  26.             'bem-bl/blocks-common',
  27.             'bem-bl/blocks-desktop'
  28.         ];
  29.  
  30.     }
  31.  
  32. });
Add Comment
Please, Sign In to add comment