From 1077c7f53b6c0d6ea7663fe2722b0e768d407741 Mon Sep 17 00:00:00 2001 From: tash-2s <81064017+tash-2s@users.noreply.github.com> Date: Thu, 30 Nov 2023 12:41:44 -0600 Subject: [PATCH] fix(store,world): fix mud config TS errors (#1974) Co-authored-by: Kevin Ingersoll --- .changeset/fair-baboons-compare.md | 6 ++++++ packages/store/.npmignore | 1 + packages/world/.npmignore | 1 + 3 files changed, 8 insertions(+) create mode 100644 .changeset/fair-baboons-compare.md diff --git a/.changeset/fair-baboons-compare.md b/.changeset/fair-baboons-compare.md new file mode 100644 index 0000000000..4e3705afff --- /dev/null +++ b/.changeset/fair-baboons-compare.md @@ -0,0 +1,6 @@ +--- +"@latticexyz/store": patch +"@latticexyz/world": patch +--- + +Fixed an issue where `mud.config.ts` source file was not included in the package, causing TS errors downstream. diff --git a/packages/store/.npmignore b/packages/store/.npmignore index bf5a89e600..9259405fa5 100644 --- a/packages/store/.npmignore +++ b/packages/store/.npmignore @@ -5,6 +5,7 @@ !out/**/*.abi.json.d.ts !src/** !ts/** +!mud.config.ts !package.json !README.md !dist/** diff --git a/packages/world/.npmignore b/packages/world/.npmignore index 97e2f21b8a..8d0269c6e7 100644 --- a/packages/world/.npmignore +++ b/packages/world/.npmignore @@ -6,6 +6,7 @@ !src/** !test/MudTest.t.sol !ts/** +!mud.config.ts !package.json !README.md !dist/**