summaryrefslogtreecommitdiff
path: root/packages/integrations/prefetch (follow)
AgeCommit message (Collapse)AuthorFilesLines
2022-08-11[ci] formatGravatar natemoo-re 1-1/+1
2022-08-11Use passive listeners in prefetch (#4207)Gravatar Maik Jablonski 1-1/+1
* Use passive listeners in prefetch Without passive=true, Lighthouse complains about not using passive listeners to improve scrolling performance. * Create cold-shoes-drum.md Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com>
2022-08-08remove details tags from integration READMEs (#4198)Gravatar Sarah Rainsberger 1-21/+12
2022-07-26[ci] release (#3972)create-astro@0.14.2astro@1.0.0-rc.1@astrojs/vue@0.5.0@astrojs/vercel@0.3.0@astrojs/tailwind@0.2.5@astrojs/svelte@0.5.0@astrojs/sitemap@0.3.0@astrojs/prefetch@0.0.6@astrojs/partytown@0.1.9@astrojs/node@0.2.0@astrojs/netlify@0.5.0@astrojs/mdx@0.3.0@astrojs/markdown-remark@0.13.0@astrojs/markdown-component@0.2.0@astrojs/lit@0.3.2@astrojs/image@0.2.0@astrojs/deno@0.2.0@astrojs/cloudflare@0.3.0Gravatar Fred K. Bot 2-1/+7
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2022-07-21[READMEs] removed "experimental" from astro add instructions (#4004)Gravatar Sarah Rainsberger 1-1/+1
2022-07-12[ci] release (#3894)Gravatar Fred K. Bot 2-1/+7
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2022-07-11More integration README fixes (#3885)Gravatar Chris Swithinbank 2-18/+13
* Integration README fixes * More tweaks (mostly code backticks for filenames) * Update changeset * Few more tweaks * Make sure code blocks all have a code language * Use URLs of new docs pages for package homepage * One more stray `<br>` :boot: * Standardise to `sh` instead of `shell`
2022-07-08[ci] release (#3850)create-astro@0.12.5astro@1.0.0-beta.65@astrojs/vue@0.2.1@astrojs/vercel@0.2.5@astrojs/turbolinks@0.1.4@astrojs/telemetry@0.2.5@astrojs/tailwind@0.2.3@astrojs/svelte@0.2.1@astrojs/solid-js@0.2.1@astrojs/sitemap@0.2.5@astrojs/react@0.2.1@astrojs/prefetch@0.0.4@astrojs/preact@0.3.2@astrojs/partytown@0.1.7@astrojs/node@0.1.5@astrojs/netlify@0.4.9@astrojs/mdx@0.0.3@astrojs/lit@0.3.1@astrojs/image@0.1.0@astrojs/deno@0.1.9@astrojs/cloudflare@0.2.3Gravatar Fred K. Bot 2-1/+9
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2022-07-08[ci] formatGravatar bholmesdev 1-1/+3
2022-07-08[astro add] Support adapters and third party packages (#3854)Gravatar Ben Holmes 1-0/+1
* feat: support adapters and third part integrations by keywords * refactor: add keywords to all official integrations * docs: add adapter ex to astro add help * nit: clarify astro add usage * nit: highlight link * fix: use process.exit(1) on error * chore: changeset * nit: bold integration name * fix: log install instructions for adapters instead * nit: change to logAdapterConfigInstructions * Revert "fix: log install instructions for adapters instead" This reverts commit 1a459f152bc7b7991db289999f7393e5be64ea3e. * feat: add hardcoded adapter export map * refactor: inline adapter config log
2022-07-08Integration README fixes (#3865)Gravatar Chris Swithinbank 1-1/+0
* Remove stray XML tag in sitemap integration README * Fix link errors * Add changeset
2022-06-30[ci] release (#3774)astro@1.0.0-beta.60@astrojs/vercel@0.2.4@astrojs/telemetry@0.2.3@astrojs/sitemap@0.2.4@astrojs/prefetch@0.0.3@astrojs/partytown@0.1.6@astrojs/node@0.1.3@astrojs/netlify@0.4.8@astrojs/mdx@0.0.2@astrojs/deno@0.1.8Gravatar Fred K. Bot 2-1/+7
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2022-06-30Fix integration name (`prefetch` instead of `lit`) (#3778)Gravatar hippotastic 1-1/+1
2022-06-28[ci] release (#3733)astro@1.0.0-beta.58@astrojs/telemetry@0.2.0@astrojs/tailwind@0.2.2@astrojs/sitemap@0.2.3@astrojs/prefetch@0.0.2@astrojs/netlify@0.4.7@astrojs/deno@0.1.7Gravatar Fred K. Bot 2-1/+23
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2022-06-28[ci] formatGravatar natemoo-re 1-1/+1
2022-06-28chore(lint): fix lint issues (#3743)Gravatar Nate Moore 1-2/+2
Co-authored-by: Nate Moore <nate@astro.build>
2022-06-27[ci] formatGravatar tony-sull 6-25/+48
2022-06-27Adds a prefetch integration for near-instant page navigations (#3725)Gravatar Tony Sullivan 17-0/+616
* Adds a basic @astrojs/prefetch integration * adding tests for custom selectors * missed in last commit * Adding a few docs, removing the option for `selectors` to be an element array * adding an option for the concurrency limit * fixing test for updated integration options * Update packages/labs/prefetch/src/client.ts Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com> * nit: removing the NodeJS.Timer type to allow typescript to infer the return * updating docs for default selector with ~= * Skip prefetching on 2G connections, or when data saver is enabled * refactor: moving to packages/integrations, Astro Labs TBD down the road * README typo fix Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com>