@nx-dart/nx-dart
Version:
A Nx plugin, that adds support for developing Dart and Flutter packages in a Nx workspace
26 lines (25 loc) • 582 B
JSON
{
"$schema": "http://json-schema.org/schema",
"cli": "nx",
"$id": "AddPackage",
"title": "",
"type": "object",
"properties": {
"directory": {
"type": "string",
"description": "The directory of the package to add.",
"$default": {
"$source": "argv",
"index": 0
},
"x-prompt": "Where is the package located?"
},
"projectType": {
"type": "string",
"description": "The Nx project type of the package.",
"enum": ["application", "library"],
"alias": "p"
}
},
"required": ["directory"]
}