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
node ./index.js wasn't actually doing anything, so I figured I'd try and run the test suite. Got the following error:
/home/ssb-pub/planetary-pub/node_modules/node-bindgen-loader/index.js:62
throw new Error('No native build was found for ' + target + '\n loaded from: ' + dir + '\n')
So, to fix this, I went into node_modules/ssb-validate2-rsjs-node and tried to build. This requires Rust. Ubuntu 22.04.1 did not have it by default, so I had to install Rust. Then the build fails because [email protected] doesn't include Cargo.toml. Updating to [email protected] allows it to be built, which then allows tests to run.
The text was updated successfully, but these errors were encountered:
node ./index.js
wasn't actually doing anything, so I figured I'd try and run the test suite. Got the following error:So, to fix this, I went into node_modules/ssb-validate2-rsjs-node and tried to build. This requires Rust. Ubuntu 22.04.1 did not have it by default, so I had to install Rust. Then the build fails because
[email protected]
doesn't include Cargo.toml. Updating to[email protected]
allows it to be built, which then allows tests to run.The text was updated successfully, but these errors were encountered: