chore: ignore lock file
This commit is contained in:
parent
45941f6c70
commit
3180144fa4
4 changed files with 6 additions and 3 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -1,3 +1,4 @@
|
|||
.vercel
|
||||
.env
|
||||
node_modules
|
||||
node_modules
|
||||
package-lock.json
|
|
@ -1 +1,2 @@
|
|||
.env
|
||||
.env
|
||||
package-lock.json
|
|
@ -1,3 +1,4 @@
|
|||
require("dotenv").config();
|
||||
const { renderError } = require("../src/utils");
|
||||
const fetchStats = require("../src/fetchStats");
|
||||
const renderStatsCard = require("../src/renderStatsCard");
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue