mirror of
https://github.com/Xevion/xevion.dev.git
synced 2025-12-06 01:16:58 -06:00
Remove extra console.log
This commit is contained in:
@@ -258,14 +258,6 @@ export default async function handler(
|
|||||||
// null values are still included in the array, so filter them out.
|
// null values are still included in the array, so filter them out.
|
||||||
.filter((project) => project !== null);
|
.filter((project) => project !== null);
|
||||||
|
|
||||||
// Log the date_updated for each project
|
|
||||||
eligibleProjects.forEach((project) => {
|
|
||||||
console.log({
|
|
||||||
name: project.name,
|
|
||||||
date_updated: project.date_updated,
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
// For each project, query the GitHub API for the latest commit date on all branches.
|
// For each project, query the GitHub API for the latest commit date on all branches.
|
||||||
const projectPromises = eligibleProjects.map((project) =>
|
const projectPromises = eligibleProjects.map((project) =>
|
||||||
handleProject({
|
handleProject({
|
||||||
|
|||||||
Reference in New Issue
Block a user