From 1ed79872f5aba83034b7d2d64e9c52a571576884 Mon Sep 17 00:00:00 2001 From: cexbrayat Date: Wed, 28 Jul 2021 10:00:31 +0200 Subject: [PATCH] fix: missing types in release rc.11 is broken because the types are not included in the package. Using `git bisect` I found the culprit commit https://github.com/vuejs/vue-test-utils-next/commit/85c2b1bb0453deab10bbe55199a7956509e6e6d7 The only change that has an impact is the addition of `type/compat.ts` which should have been named `types/compat.d.ts` I think. This commit applies the fix, and should hopefuly fix the packaging. Fixes #799 --- types/{compat.ts => compat.d.ts} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename types/{compat.ts => compat.d.ts} (100%) diff --git a/types/compat.ts b/types/compat.d.ts similarity index 100% rename from types/compat.ts rename to types/compat.d.ts