summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Nate Moore <natemoo-re@users.noreply.github.com> 2022-06-28 08:39:10 -0500
committerGravatar GitHub <noreply@github.com> 2022-06-28 08:39:10 -0500
commit53bf0be280b9387c804098f75574b8402ebf8c0c (patch)
tree3bbfd3e616b8ae99fbd33f2419a9aef5546eb6cd
parent768c8ed21db9114fa99d6d8d87e8f7ad4350f855 (diff)
downloadastro-53bf0be280b9387c804098f75574b8402ebf8c0c.tar.gz
astro-53bf0be280b9387c804098f75574b8402ebf8c0c.tar.zst
astro-53bf0be280b9387c804098f75574b8402ebf8c0c.zip
chore(lint): fix lint issues (#3743)
Co-authored-by: Nate Moore <nate@astro.build>
-rw-r--r--packages/create-astro/src/index.ts2
-rw-r--r--packages/integrations/prefetch/src/client.ts4
2 files changed, 3 insertions, 3 deletions
diff --git a/packages/create-astro/src/index.ts b/packages/create-astro/src/index.ts
index df676fbfb..fba9b710c 100644
--- a/packages/create-astro/src/index.ts
+++ b/packages/create-astro/src/index.ts
@@ -14,7 +14,7 @@ import { TEMPLATES } from './templates.js';
function wait(ms: number) {
return new Promise((resolve) => setTimeout(resolve, ms));
}
-function logAndWait(message: string, ms: number = 100) {
+function logAndWait(message: string, ms = 100) {
console.log(message);
return wait(ms);
}
diff --git a/packages/integrations/prefetch/src/client.ts b/packages/integrations/prefetch/src/client.ts
index 9f951c8dd..fae2db54a 100644
--- a/packages/integrations/prefetch/src/client.ts
+++ b/packages/integrations/prefetch/src/client.ts
@@ -1,4 +1,4 @@
-/// <reference path="../@types/network-information.d.ts" />
+import "../@types/network-information.d.ts";
import throttles from 'throttles';
import requestIdleCallback from './requestIdleCallback.js';
@@ -53,7 +53,7 @@ async function preloadHref(link: HTMLAnchorElement) {
const html = parser.parseFromString(contents, 'text/html');
const styles = Array.from(html.querySelectorAll<HTMLLinkElement>('link[rel="stylesheet"]'));
- await Promise.all(styles.map(({ href }) => fetch(href)));
+ await Promise.all(styles.map((el) => fetch(el.href)));
} catch {}
}