Patch Tuesday 🐸 (#16475)

* Update monorepo root

* Update API dependencies

* Use unranged version

* Update app deps

* Upgrade packages dependencies

* Fix shared build

* Fix type warning in api

* Fix test runner

* Get rekt by ya boy comma-,

* Fix missing unit deprecation for sass color.mix()

Co-authored-by: ian <licitdev@gmail.com>
This commit is contained in:
Rijk van Zanten
2022-11-17 08:51:42 -05:00
committed by GitHub
parent 6f8f5219af
commit 0bb34f0f0d
16 changed files with 2925 additions and 2669 deletions

View File

@@ -1,6 +1,7 @@
export default function getModuleDefault<T>(mod: T | { default: T }): T {
export default function getModuleDefault<T extends object>(mod: T | { default: T }): T {
if ('default' in mod) {
return mod.default;
}
return mod;
}