diff options
author | 2022-10-27 15:43:20 -0300 | |
---|---|---|
committer | 2022-10-27 15:43:20 -0300 | |
commit | 8c83359e385b47fb6e453c023aeac2e01a579f38 (patch) | |
tree | ec6769b9d25af4e2e45502ea2622febaee870011 | |
parent | f4dd4522bf9e9619368a20fc6049df4b93cfd83e (diff) | |
download | astro-8c83359e385b47fb6e453c023aeac2e01a579f38.tar.gz astro-8c83359e385b47fb6e453c023aeac2e01a579f38.tar.zst astro-8c83359e385b47fb6e453c023aeac2e01a579f38.zip |
Fix types.d.ts not being included in the npm package (#5217)
-rw-r--r-- | .changeset/olive-tomatoes-jog.md | 5 | ||||
-rw-r--r-- | packages/astro/package.json | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/.changeset/olive-tomatoes-jog.md b/.changeset/olive-tomatoes-jog.md new file mode 100644 index 000000000..1dac1665e --- /dev/null +++ b/.changeset/olive-tomatoes-jog.md @@ -0,0 +1,5 @@ +--- +'astro': patch +--- + +Fix missing types.d.ts in npm package diff --git a/packages/astro/package.json b/packages/astro/package.json index 08dbf3b56..6fbed246f 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -82,6 +82,7 @@ "client-base.d.ts", "import-meta.d.ts", "astro-jsx.d.ts", + "types.d.ts", "README.md", "vendor" ], |