chore: ignore lock file

This commit is contained in:
anuraghazra 2020-07-11 23:20:42 +05:30
parent 45941f6c70
commit 3180144fa4
4 changed files with 6 additions and 3 deletions

3
.gitignore vendored
View File

@ -1,3 +1,4 @@
.vercel
.env
node_modules
node_modules
package-lock.json

View File

@ -1 +1,2 @@
.env
.env
package-lock.json

View File

@ -1,3 +1,4 @@
require("dotenv").config();
const { renderError } = require("../src/utils");
const fetchStats = require("../src/fetchStats");
const renderStatsCard = require("../src/renderStatsCard");

View File

@ -1,7 +1,7 @@
require("dotenv").config();
const { renderError } = require("../src/utils");
const fetchRepo = require("../src/fetchRepo");
const renderRepoCard = require("../src/renderRepoCard");
require("dotenv").config();
module.exports = async (req, res) => {
const { username, repo } = req.query;