You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
92 lines
2.4 KiB
92 lines
2.4 KiB
/*******************************
|
|
Set-up
|
|
*******************************/
|
|
|
|
var
|
|
defaults = require('../defaults'),
|
|
path = require('path')
|
|
;
|
|
|
|
|
|
/*******************************
|
|
Exports
|
|
*******************************/
|
|
|
|
|
|
module.exports = {
|
|
|
|
// adds additional derived values to a config object
|
|
addDerivedValues: function(config) {
|
|
|
|
config = config || defaults;
|
|
|
|
/*--------------
|
|
File Paths
|
|
---------------*/
|
|
|
|
// resolve source paths
|
|
for(var folder in config.paths.source) {
|
|
if(config.paths.source.hasOwnProperty(folder)) {
|
|
config.paths.source[folder] = path.normalize(config.base + config.paths.source[folder]);
|
|
}
|
|
}
|
|
|
|
// resolve output paths
|
|
for(folder in config.paths.output) {
|
|
if(config.paths.output.hasOwnProperty(folder)) {
|
|
config.paths.output[folder] = path.normalize(config.base + config.paths.output[folder]);
|
|
}
|
|
}
|
|
|
|
// resolve "clean" command path
|
|
config.paths.clean = config.base + config.paths.clean;
|
|
|
|
/*--------------
|
|
CSS URLs
|
|
---------------*/
|
|
|
|
// determine asset paths in css by finding relative path between themes and output
|
|
// force forward slashes
|
|
|
|
config.paths.assets = {
|
|
source : '../../themes', // source asset path is always the same
|
|
uncompressed : path.relative(config.paths.output.uncompressed, config.paths.output.themes).replace(/\\/g,'/'),
|
|
compressed : path.relative(config.paths.output.compressed, config.paths.output.themes).replace(/\\/g,'/'),
|
|
packaged : path.relative(config.paths.output.packaged, config.paths.output.themes).replace(/\\/g,'/')
|
|
};
|
|
|
|
|
|
/*--------------
|
|
Permission
|
|
---------------*/
|
|
|
|
if(config.permission) {
|
|
config.hasPermissions = true;
|
|
}
|
|
else {
|
|
// pass blank object to avoid causing errors
|
|
config.permission = {};
|
|
config.hasPermissions = false;
|
|
}
|
|
|
|
/*--------------
|
|
Globs
|
|
---------------*/
|
|
|
|
if(!config.globs) {
|
|
config.globs = {};
|
|
}
|
|
|
|
// takes component object and creates file glob matching selected components
|
|
config.globs.components = (typeof config.components == 'object')
|
|
? (config.components.length > 1)
|
|
? '{' + config.components.join(',') + '}'
|
|
: config.components[0]
|
|
: '{' + defaults.components.join(',') + '}'
|
|
;
|
|
|
|
return config;
|
|
|
|
}
|
|
|
|
};
|