Commit a586746
Changed files (3)
src
all-badges
delorean
spooky-commit
src/all-badges/delorean/delorean.ts
@@ -1,5 +1,5 @@
import { BadgePresenter, Present } from '../../badges.js'
-import { Commit } from '../../collect/collect.js'
+import { Commit } from '../../collect/types.js'
export default new (class implements BadgePresenter {
url = new URL(import.meta.url)
src/all-badges/spooky-commit/spooky-commit.ts
@@ -1,5 +1,5 @@
import { BadgePresenter, Present } from '../../badges.js'
-import { Commit } from '../../collect/collect.js'
+import { Commit } from '../../collect/types.js'
export default new (class implements BadgePresenter {
url = new URL(import.meta.url)
src/check-images.ts
@@ -16,7 +16,7 @@ void (async function main() {
console.error(`Missing image for badge "${id}" at ${rootPath}`)
foundMissing = true
} else {
- console.log(`<img src="${imagePath}" alt="${id}" width="64">`)
+ console.log(`<img src="${imagePath}" alt="${id}" width="42">`)
}
}
}