Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
milankomaj committed Aug 1, 2024
1 parent 378a5f7 commit 5faaf3c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/github.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { retry } from "@octokit/plugin-retry";
// import { graphql } from "@octokit/graphql";
import { paginateGraphQL } from "@octokit/plugin-paginate-graphql";
import { lang } from './github-lang-colors.js';
console.log("βœ… Date:", util.color.magenta(new Date(Math.floor(Date.now())).toLocaleDateString())) // toLocaleString
console.log("βœ… Date:", util.color.randomColorANSI(new Date(Math.floor(Date.now())).toLocaleDateString())) // toLocaleString
const token = process.env.ACCESS_TOKEN //πŸ”Ά node and action


Expand Down Expand Up @@ -113,6 +113,7 @@ class GithubUser {

console.info("βœ… this.userName:", util.color.bold(this.userName))
console.info("βœ… this.repo:", this.repo)
console.info("βœ… this.stars:", this.stars)
console.info("βœ… this.size:", util.color.yellow(Number(this.size / 1000).toFixed(2) + " MB "))
console.info("βœ… this.commits:", this.commits)
console.info("βœ… this.views:", this.views)
Expand Down

0 comments on commit 5faaf3c

Please sign in to comment.