Spencer Corwin
Spencer Corwin
Cypress tests aren't passing on 2.x branch. They should work/pass. It's important that this passes on every CI check to maintain high quality on 2.x branch.
We removed the NEO Tracker instance from the build command while developing. Eventually want to add this back. And add back `neo-one neotracker start`
These are failing. I don't know the reason but it's a simple fix. I believe neotracker isn't starting because it's not a dependency of NEO•ONE anymore. But I could be...
The Quick Start guide could be made even more user friendly if we had a repo they could clone and start from. Kind of like the Playground but simpler. Although...
Every manifest has the ability to include a property called "extra" which is an arbitrary user-defined JSON object. We should probably just add the ability to add an optional "extra"...
We have a lot of errors that aren't implemented correctly. They are simple `new Error()`. But they can and should provide more information and be errors with code. See `makeErrorWithCode`...
Some of this may already be possible but not documented. Make sure to add test coverage and documentation for any new CLI features.
- Install dotnet - Install Mono?, EdgeJS?, other? (don't think so) - Set env variables: - EDGE_NATIVE - EDGE_USE_CORECLR=1 - EDGE_APP_ROOT=/Users/spencercorwin/neo-one/packages/neo-one-node-vm/lib/bin/Debug/netcoreapp3.0 - PKG_CONFIG_PATH=/Library/Frameworks/Mono.framework/Versions/Current/lib/pkgconfig - Install `pkg-config`? `brew install pkg-config` -...
See environment setup docs for details on editor setup.
`updateCounter` and `id` are nullable in the C# code. But not in our TS code since this would cause various type errors. Should we make them optional/nullable? Or should we...