UNPKG

@nrwl/workspace

Version:

The Workspace plugin contains executors and generators that are useful for any Nx workspace. It should be present in every Nx workspace and other plugins build on it.

22 lines (21 loc) 493 B
{ "$schema": "http://json-schema.org/schema", "$id": "NxWorkspaceNpmPackage", "title": "Add a minimal npm package", "description": "Add a minimal npm package.", "cli": "nx", "type": "object", "properties": { "name": { "type": "string", "description": "Package name.", "$default": { "$source": "argv", "index": 0 }, "x-prompt": "What name of your npm package?", "pattern": "^[a-zA-Z].*$" } }, "required": ["name"] }