UNPKG

twreporter-react

Version:

React-Redux site for The Reporter Foundation in Taiwan

47 lines (41 loc) 1.29 kB
#! /usr/bin/env node var cc = require('./lib/utils') var join = require('path').join var deepExtend = require('deep-extend') var etc = '/etc' var win = process.platform === "win32" var home = win ? process.env.USERPROFILE : process.env.HOME module.exports = function (name, defaults, argv) { if('string' !== typeof name) throw new Error('rc(name): name *must* be string') if(!argv) argv = require('minimist')(process.argv.slice(2)) defaults = ( 'string' === typeof defaults ? cc.json(defaults) : defaults ) || {} var local = cc.find('.'+name+'rc') var env = cc.env(name + '_') return deepExtend.apply(null, [ defaults, win ? {} : cc.json(join(etc, name, 'config')), win ? {} : cc.json(join(etc, name + 'rc')), home ? cc.json(join(home, '.config', name, 'config')) : {}, home ? cc.json(join(home, '.config', name)) : {}, home ? cc.json(join(home, '.' + name, 'config')) : {}, home ? cc.json(join(home, '.' + name + 'rc')) : {}, cc.json(local), local ? {config: local} : null, env.config ? cc.json(env.config) : null, argv.config ? cc.json(argv.config) : null, env, argv ]) } if(!module.parent) { console.log( JSON.stringify(module.exports(process.argv[2]), false, 2) ) }