This commit is contained in:
Oleg Mokhov
2015-06-20 12:26:08 +03:00
committed by mokhov
parent a716969f4e
commit f3546ef3a5
85 changed files with 16682 additions and 1 deletions

26
.enb/make.js Normal file
View File

@@ -0,0 +1,26 @@
module.exports = function(config) {
config.includeConfig('enb-bevis-helper');
var browserSupport = [
'IE >= 9',
'Safari >= 5',
'Chrome >= 33',
'Opera >= 12.16',
'Firefox >= 28'
];
var bevisHelper = config.module('enb-bevis-helper')
.browserSupport(browserSupport)
.useAutopolyfiller();
config.setLanguages(['ru']);
config.node('build/index', function (nodeConfig) {
bevisHelper
.sourceDeps('index')
.sources({profile: 'index'})
.forStaticHtmlPage()
//.forServerPage()
.configureNode(nodeConfig);
});
};