Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
58 lines (43 sloc)
1.19 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /******************************* | |
| Set-up | |
| *******************************/ | |
| var | |
| // npm dependencies | |
| extend = require('extend'), | |
| fs = require('fs'), | |
| path = require('path'), | |
| requireDotFile = require('require-dot-file'), | |
| // semantic.json defaults | |
| defaults = require('./defaults'), | |
| config = require('./project/config'), | |
| // Final config object | |
| gulpConfig = {}, | |
| // semantic.json settings | |
| userConfig | |
| ; | |
| /******************************* | |
| User Config | |
| *******************************/ | |
| try { | |
| // looks for config file across all parent directories | |
| userConfig = requireDotFile('semantic.json'); | |
| } | |
| catch(error) { | |
| if(error.code === 'MODULE_NOT_FOUND') { | |
| console.error('No semantic.json config found'); | |
| } | |
| } | |
| // extend user config with defaults | |
| gulpConfig = (!userConfig) | |
| ? extend(true, {}, defaults) | |
| : extend(false, {}, defaults, userConfig) | |
| ; | |
| /******************************* | |
| Add Derived Values | |
| *******************************/ | |
| // adds calculated values | |
| config.addDerivedValues(gulpConfig); | |
| /******************************* | |
| Export | |
| *******************************/ | |
| module.exports = gulpConfig; |