feat: changed to module.exports

This commit is contained in:
Randell Dawson
2018-11-11 23:52:00 -08:00
committed by mrugesh mohapatra
parent 76c23be416
commit 2ae521c995
14 changed files with 36 additions and 31 deletions

View File

@@ -4,7 +4,4 @@ const repo = process.env.REPOSITORY;
const fccBaseUrl = `https://github.com/${owner}/${repo}/`;
const prBaseUrl = `${fccBaseUrl}pull/`;
exports.owner = owner;
exports.repo = repo;
exports.fccBaseUrl = fccBaseUrl;
exports.prBaseUrl = prBaseUrl;
module.exports = { owner, repo, fccBaseUrl, prBaseUrl }