aboutsummaryrefslogtreecommitdiff
path: root/packages/integrations/cloudflare/src/utils/sharpBundlePatch.ts
diff options
context:
space:
mode:
authorGravatar Alexander Niebuhr <alexander@nbhr.io> 2024-03-28 09:17:53 +0100
committerGravatar GitHub <noreply@github.com> 2024-03-28 09:17:53 +0100
commit8ef3050f1461bb824f095af5157624bfb68ef63c (patch)
treefa14f03b307c4fea4218f89ce75fceea48790a81 /packages/integrations/cloudflare/src/utils/sharpBundlePatch.ts
parent08f6167c012a2c61da5055f350acdf62a8b12b8f (diff)
downloadastro-8ef3050f1461bb824f095af5157624bfb68ef63c.tar.gz
astro-8ef3050f1461bb824f095af5157624bfb68ef63c.tar.zst
astro-8ef3050f1461bb824f095af5157624bfb68ef63c.zip
feat(cloudflare): major refactor for v10 (#159)
Co-authored-by: Matthew Phillips <361671+matthewp@users.noreply.github.com> Co-authored-by: Emanuele Stoppa <602478+ematipico@users.noreply.github.com> Co-authored-by: Erika <3019731+Princesseuh@users.noreply.github.com> Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca>
Diffstat (limited to 'packages/integrations/cloudflare/src/utils/sharpBundlePatch.ts')
-rw-r--r--packages/integrations/cloudflare/src/utils/sharpBundlePatch.ts20
1 files changed, 0 insertions, 20 deletions
diff --git a/packages/integrations/cloudflare/src/utils/sharpBundlePatch.ts b/packages/integrations/cloudflare/src/utils/sharpBundlePatch.ts
deleted file mode 100644
index ea9015be2..000000000
--- a/packages/integrations/cloudflare/src/utils/sharpBundlePatch.ts
+++ /dev/null
@@ -1,20 +0,0 @@
-import type esbuild from 'esbuild';
-
-export function patchSharpBundle(): esbuild.Plugin {
- return {
- name: 'sharp-patch',
- setup(build) {
- build.onResolve({ filter: /^sharp/ }, (args) => ({
- path: args.path,
- namespace: 'sharp-ns',
- }));
-
- build.onLoad({ filter: /.*/, namespace: 'sharp-ns' }, (a) => {
- return {
- contents: JSON.stringify(''),
- loader: 'json',
- };
- });
- },
- };
-}