From 2f56664f85596c6268ecb44bbb9c36cca2ea49c5 Mon Sep 17 00:00:00 2001 From: Randall Date: Mon, 4 Jul 2022 14:51:30 -0700 Subject: [PATCH] Fix example on `README.md` on @astrojs/node (#3817) * Fix example on `README.md` The example was suggesting `import deno from '@astrojs/node';` which doesn't work. It needs to be `import node from '@astrojs/node';`. * Create itchy-bottles-rhyme.md Co-authored-by: Peter Singh --- .changeset/itchy-bottles-rhyme.md | 5 +++++ packages/integrations/node/README.md | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .changeset/itchy-bottles-rhyme.md diff --git a/.changeset/itchy-bottles-rhyme.md b/.changeset/itchy-bottles-rhyme.md new file mode 100644 index 000000000000..67758e71796e --- /dev/null +++ b/.changeset/itchy-bottles-rhyme.md @@ -0,0 +1,5 @@ +--- +"@astrojs/node": patch +--- + +Fix example on `README.md` diff --git a/packages/integrations/node/README.md b/packages/integrations/node/README.md index ad8629e1ad82..a31466cf7d4b 100644 --- a/packages/integrations/node/README.md +++ b/packages/integrations/node/README.md @@ -33,7 +33,7 @@ __astro.config.mjs__ ```js import { defineConfig } from 'astro/config'; -import deno from '@astrojs/node'; +import node from '@astrojs/node'; export default defineConfig({ // ...