Sun calculation js library which is fully based on formula from http://aa.quae.nl/en/reken/zonpositie.html
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.
16 lines
654 B
16 lines
654 B
var minimist = require('minimist');
|
|
|
|
// this needs to go before the other require()s so that
|
|
// the other files can already use index.options
|
|
exports.options = minimist(process.argv.slice(2), {
|
|
boolean: ['verbose', 'stdout'],
|
|
alias: { 'v': 'verbose', 's': 'stdout' }
|
|
});
|
|
|
|
var dir = './lib/';
|
|
exports.convertLcovToCoveralls = require(dir + 'convertLcovToCoveralls');
|
|
exports.sendToCoveralls = require(dir + 'sendToCoveralls');
|
|
exports.getBaseOptions = require(dir + 'getOptions').getBaseOptions;
|
|
exports.getOptions = require(dir + 'getOptions').getOptions;
|
|
exports.handleInput = require(dir + 'handleInput');
|
|
exports.logger = require(dir + 'logger');
|
|
|