UNPKG

@ledgerhq/live-common

Version:
25 lines (23 loc) 836 B
import React from "react"; import Transport from "@ledgerhq/hw-transport"; import { NotEnoughBalance } from "@ledgerhq/errors"; import { log } from "@ledgerhq/logs"; export function checkLibs(libs) { check(libs.NotEnoughBalance, NotEnoughBalance, "@ledgerhq/errors"); check(libs.log, log, "@ledgerhq/logs"); check(libs.Transport, Transport, "@ledgerhq/hw-transport"); check(libs.React, React, "react"); function check(remoteInst, localInst, pkg) { if (remoteInst && remoteInst !== localInst) { console.warn(` ______ | |__| | | () | |______| ${pkg} NPM package dup detected! You must \`pnpm why -r ${pkg}\` and update the versions accordingly. `); throw new Error("duplicated " + pkg + " library"); } } } //# sourceMappingURL=sanityChecks.js.map