Skip to content

Instantly share code, notes, and snippets.

@varya
Created November 30, 2012 17:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save varya/4177229 to your computer and use it in GitHub Desktop.
Save varya/4177229 to your computer and use it in GitHub Desktop.
/*global MAKE:true */
"use strict";
//process.env.YENV = 'production';
MAKE.decl('Arch', {
blocksLevelsRegexp: /^.+?\.blocks/,
bundlesLevelsRegexp: /^.+?\.bundles$/,
getLibraries: function() {
return {
'bem-bl': {
type: 'git',
url: 'git://github.com/bem/bem-bl.git',
treeish: '0.3'
},
'bemhtml' : {
type: 'git',
url: 'git://github.com/bem/bemhtml.git'
},
'john-lib' : {
type: 'git',
url: 'git://github.com/john-johnson/j.git'
}
};
}
});
MAKE.decl('BundleNode', {
getTechs: function() {
return [
'bemjson.js',
'bemdecl.js',
'deps.js',
'bemhtml',
'js',
'css',
'ie.css',
'ie6.css',
'ie7.css',
'ie8.css',
'ie9.css',
'html'
];
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment