@pogodisco/zephyr 1.3.19 → 1.3.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -7,7 +7,7 @@ type OwnWFs<Own extends ModuleShape> = {
7
7
  type NamespacedDepWFs<DepName extends string, M extends Module<any, any, any, any>> = {
8
8
  [K in keyof M["own"] & string as `${DepName}.${K}`]: M["own"][K];
9
9
  };
10
- type DepsWFs<Deps extends ModuleMap> = {
10
+ type DepsWFs<Deps extends ModuleMap> = [keyof Deps] extends [never] ? {} : {
11
11
  [DepName in keyof Deps & string]: NamespacedDepWFs<DepName, Deps[DepName]>;
12
12
  }[keyof Deps & string];
13
13
  type ModuleDepsPublic<Use> = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pogodisco/zephyr",
3
- "version": "1.3.19",
3
+ "version": "1.3.20",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },