An NX plugin for running Anchor commands
Runs the Anchor "build" command
{
...
"targets": {
"build": {
"executor": "@gxxc/nx-anchor:build"
}
}
}
Then, from the root of your nx project:
> nx build <project-name>
Runs the Anchor "test" command
{
...
"targets": {
"test": {
"executor": "@gxxc/nx-anchor:test"
}
}
}
Then, from the root of your nx project:
> nx test <project-name>
This just runs simple build and test commands, with no arguments. Eventually, it should support more commands + passing in arguments.