diff options
author | 2022-06-06 12:02:13 -0400 | |
---|---|---|
committer | 2022-06-06 12:02:13 -0400 | |
commit | c22a07db134a9d0741a05123fb506595aabf145b (patch) | |
tree | 1002ab32a8b124deb434de2a4cb38248e4ea1eca /packages/integrations/deno/test/deps.js | |
parent | 9029c43549b7199fb816ccd0bac9171ee4e429c0 (diff) | |
download | astro-c22a07db134a9d0741a05123fb506595aabf145b.tar.gz astro-c22a07db134a9d0741a05123fb506595aabf145b.tar.zst astro-c22a07db134a9d0741a05123fb506595aabf145b.zip |
Fix use of dynamic imports / Astro.glob with Deno Deploy (#3532)
* Fix use of dynamic imports / Astro.glob with Deno Deploy
* Adds a changeset
* Mark the markdown package as external
Diffstat (limited to 'packages/integrations/deno/test/deps.js')
-rw-r--r-- | packages/integrations/deno/test/deps.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/integrations/deno/test/deps.js b/packages/integrations/deno/test/deps.js index 80410a338..0fd0a6673 100644 --- a/packages/integrations/deno/test/deps.js +++ b/packages/integrations/deno/test/deps.js @@ -1,3 +1,4 @@ export * from 'https://deno.land/std@0.110.0/path/mod.ts'; export * from 'https://deno.land/std@0.132.0/testing/asserts.ts'; export * from 'https://deno.land/x/deno_dom/deno-dom-wasm.ts'; +export * from 'https://deno.land/std@0.142.0/streams/conversion.ts'; |