@nx-kz/go
Version:
This is Nx plugin to use Go in a Nx workspace.
35 lines (34 loc) • 802 B
JSON
{
"$schema": "http://json-schema.org/schema",
"cli": "nx",
"$id": "Library",
"title": "",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "",
"$default": {
"$source": "argv",
"index": 0
},
"x-prompt": "What name would you like to use?"
},
"tags": {
"type": "string",
"description": "Add tags to the project (used for linting)",
"alias": "t"
},
"parent": {
"type": "string",
"description": "A directory where projects are placed. The default value is workspaceLayout.libsDir.",
"alias": "p"
},
"directory": {
"type": "string",
"description": "A directory where the project is placed",
"alias": "d"
}
},
"required": ["name"]
}