summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Erika <3019731+Princesseuh@users.noreply.github.com> 2022-08-26 19:28:34 -0300
committerGravatar GitHub <noreply@github.com> 2022-08-26 19:28:34 -0300
commit4e1af3f0e8f5627cea24e4ec76d711d0387e3176 (patch)
treef68c71e06140fa17f89e1bf4c78f19363621a1c9
parentd85133393ae7e4db6ff97a16da1850c60e8a59af (diff)
downloadastro-4e1af3f0e8f5627cea24e4ec76d711d0387e3176.tar.gz
astro-4e1af3f0e8f5627cea24e4ec76d711d0387e3176.tar.zst
astro-4e1af3f0e8f5627cea24e4ec76d711d0387e3176.zip
Fix import-meta.d.ts not being included in the package (#4507)
-rw-r--r--.changeset/nice-readers-mix.md5
-rw-r--r--packages/astro/package.json2
2 files changed, 7 insertions, 0 deletions
diff --git a/.changeset/nice-readers-mix.md b/.changeset/nice-readers-mix.md
new file mode 100644
index 000000000..78b39d3b2
--- /dev/null
+++ b/.changeset/nice-readers-mix.md
@@ -0,0 +1,5 @@
+---
+'astro': patch
+---
+
+Fix `import-meta.d.ts` not being included in the npm package
diff --git a/packages/astro/package.json b/packages/astro/package.json
index 0679b6ab3..0815dd710 100644
--- a/packages/astro/package.json
+++ b/packages/astro/package.json
@@ -31,6 +31,7 @@
"./env": "./env.d.ts",
"./client": "./client.d.ts",
"./client-base": "./client-base.d.ts",
+ "./import-meta": "./import-meta.d.ts",
"./astro-jsx": "./astro-jsx.d.ts",
"./tsconfigs/*.json": "./tsconfigs/*",
"./tsconfigs/*": "./tsconfigs/*.json",
@@ -75,6 +76,7 @@
"env.d.ts",
"client.d.ts",
"client-base.d.ts",
+ "import-meta.d.ts",
"astro-jsx.d.ts",
"README.md",
"vendor"