mirror of
https://github.com/bower/bower.git
synced 2026-02-03 18:44:55 -05:00
18 lines
350 B
JavaScript
18 lines
350 B
JavaScript
/**
|
|
* We use the awesome rc library at https://github.com/dominictarr/rc
|
|
*/
|
|
var rc = require('rc') ('bower', {
|
|
//Bower Defaults
|
|
directory: 'components',
|
|
json: 'component.json',
|
|
endpoint: 'https://bower.herokuapp.com'
|
|
});
|
|
|
|
|
|
/**
|
|
* This function returns the Bower Config.
|
|
*/
|
|
|
|
module.exports = function() {
|
|
return rc;
|
|
}; |