UNPKG

@nx/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.

26 lines (25 loc) 625 B
{ "$schema": "https://json-schema.org/schema", "$id": "NxWorkspaceNpmPackage", "title": "Add a minimal npm package", "description": "Add a minimal npm package.", "cli": "nx", "type": "object", "properties": { "directory": { "type": "string", "description": "A directory where the package is placed.", "alias": "dir", "$default": { "$source": "argv", "index": 0 }, "x-prompt": "Which directory do you want to create the package in?" }, "name": { "type": "string", "description": "Package name." } }, "required": ["directory"] }