You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 21, 2020. It is now read-only.
Move ganache-core as a devDependency to avoid embedding it in hopr-core, which is making the compilation of the binary more bloated and difficult.
Update the required scripts that rely on this dependency to ensure a build can be created successfully w/o this particular dependency listed as a main dependency.
Deploy a dev version of hopr-core-ethereum with this setup; ensure it it is working by creating a new package and installing it and ensuring its not listed in the node_modules folder.
e.g.
$ mkdir test && cd test
$ test> npm init -y && npm i @hoprnet/hopr-core-ethereum
$ test> npm ls | grep ganache-core
The text was updated successfully, but these errors were encountered:
@nionis Version 0.3.5-dev.ac4725c of hopr-ethereum already does not include ganache-core, but its currently breaking the build.
node_modules/@hoprnet/hopr-ethereum/build/lib/scripts/operations/utils/ganache.d.ts:1:21 - error TS2307: Cannot find module 'ganache-core' or its corresponding type declarations.
1 import Ganache from 'ganache-core';
~~~~~~~~~~~~~~
Found 1 error.
ganache-core
as adevDependency
to avoid embedding it inhopr-core
, which is making the compilation of the binary more bloated and difficult.dev
version ofhopr-core-ethereum
with this setup; ensure it it is working by creating a new package and installing it and ensuring its not listed in thenode_modules
folder.e.g.
The text was updated successfully, but these errors were encountered: