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
With the monorepo transition, we're now able to perform a lerna bootstrap --ignore-scripts to link all its packages together, as long as they are in a conformant version range.
Some dependencies were not symlinked as expected, though, resulting in using to the npm packages (remote). Listed below:
vm -> block ^2.2.2
blockchain -> block ~2.2.2
block -> tx ^2.1.1
Additionally, I am working on improving how ts-node runs our packages' code, without having to use npm run build for each of our dependencies, for each change.
The text was updated successfully, but these errors were encountered:
With the block library this is likely due to having done these 2.2.x releases on separate branches not merged back into master due to the 3.0.0 release still outstanding. This is something we should integrate into the next major version of the VM here, this is actually long-time outstanding.
With the monorepo transition, we're now able to perform a
lerna bootstrap --ignore-scripts
to link all its packages together, as long as they are in a conformant version range.Some dependencies were not symlinked as expected, though, resulting in using to the npm packages (remote). Listed below:
Additionally, I am working on improving how ts-node runs our packages' code, without having to use
npm run build
for each of our dependencies, for each change.The text was updated successfully, but these errors were encountered: