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