fix: linting errors
License: MIT Signed-off-by: Henrique Dias <hacdias@gmail.com>
This commit is contained in:
parent
396de4ea0f
commit
5d5adb8ae0
10
bin/index.js
10
bin/index.js
|
@ -44,12 +44,12 @@ async function run () {
|
||||||
console.log(`😊 Going to clone XKCD to ${argv.dir}`)
|
console.log(`😊 Going to clone XKCD to ${argv.dir}`)
|
||||||
|
|
||||||
let added = []
|
let added = []
|
||||||
let errored = []
|
const errored = []
|
||||||
|
|
||||||
let latest = null
|
let latest = null
|
||||||
|
|
||||||
try {
|
try {
|
||||||
console.log(`🔍 Finding the latest comic`)
|
console.log('🔍 Finding the latest comic')
|
||||||
latest = await getLatestId()
|
latest = await getLatestId()
|
||||||
console.log(`😁 Found! We're on comic number ${latest}!`)
|
console.log(`😁 Found! We're on comic number ${latest}!`)
|
||||||
|
|
||||||
|
@ -75,7 +75,7 @@ async function run () {
|
||||||
|
|
||||||
let comic = null
|
let comic = null
|
||||||
|
|
||||||
let info = {
|
const info = {
|
||||||
id: i,
|
id: i,
|
||||||
dir: dir,
|
dir: dir,
|
||||||
num: num
|
num: num
|
||||||
|
@ -113,9 +113,9 @@ async function run () {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (errored.length === 0) {
|
if (errored.length === 0) {
|
||||||
progress(`📦 All comics fetched\n`)
|
progress('📦 All comics fetched\n')
|
||||||
} else {
|
} else {
|
||||||
progress(`📦 Some comics fetched\n`)
|
progress('📦 Some comics fetched\n')
|
||||||
}
|
}
|
||||||
|
|
||||||
added = added.sort((a, b) => a.num - b.num)
|
added = added.sort((a, b) => a.num - b.num)
|
||||||
|
|
|
@ -2,7 +2,7 @@ const fetch = require('node-fetch')
|
||||||
const path = require('path')
|
const path = require('path')
|
||||||
|
|
||||||
async function getLatestId () {
|
async function getLatestId () {
|
||||||
const raw = await fetch(`https://xkcd.com/info.0.json`)
|
const raw = await fetch('https://xkcd.com/info.0.json')
|
||||||
const data = await raw.json()
|
const data = await raw.json()
|
||||||
return data.num
|
return data.num
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user