Skip to content

Commit

Permalink
chore: ignore lock file
Browse files Browse the repository at this point in the history
  • Loading branch information
anuraghazra committed Jul 11, 2020
1 parent 45941f6 commit 3180144
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.vercel
.env
node_modules
node_modules
package-lock.json
3 changes: 2 additions & 1 deletion .vercelignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
.env
.env
package-lock.json
1 change: 1 addition & 0 deletions api/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
require("dotenv").config();
const { renderError } = require("../src/utils");
const fetchStats = require("../src/fetchStats");
const renderStatsCard = require("../src/renderStatsCard");
Expand Down
2 changes: 1 addition & 1 deletion api/pin.js
Original file line number Diff line number Diff line change
@@ -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;
Expand Down

0 comments on commit 3180144

Please sign in to comment.