@nx-plugins/slidev
Version:
The Nx Plugin for Slidev that contains executors, generators, and utilities for managing Slidev applications within an Nx workspace.
44 lines (43 loc) • 1.15 kB
JSON
{
"$schema": "http://json-schema.org/schema",
"cli": "nx",
"title": "Export executor",
"description": "",
"type": "object",
"properties": {
"entry": {
"description": "The path of the Vitest configuration. (https://vitest.dev/config/#configuration)",
"type": "string"
},
"output": {
"description": "path to the output",
"type": "string"
},
"base": {
"description": "output format",
"enum": ["pdf", "png", "md"],
"type": "string"
},
"timeout": {
"description": "timeout for rendering the print page (see https://playwright.dev/docs/api/class-page#page-goto)",
"type": "number"
},
"range": {
"description": "page ranges to export (example: '1,4-5,6')",
"type": "string"
},
"dark": {
"description": "export as dark theme",
"type": "boolean"
},
"withClicks": {
"description": "export pages for every clicks (see https://sli.dev/guide/animations.html#click-animations)",
"type": "boolean"
},
"theme": {
"description": "override theme",
"type": "string"
}
},
"required": []
}