Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jonbcampos/6b0a1d8fe3003669d28f5c3c1682e63c to your computer and use it in GitHub Desktop.
Save jonbcampos/6b0a1d8fe3003669d28f5c3c1682e63c to your computer and use it in GitHub Desktop.
{
"$schema": "http://json-schema.org/schema",
"id": "SchematicsMaterialInstall",
"title": "Material Install Options Schema",
"type": "object",
"properties": {
"skipPackageJson": {
"type": "boolean",
"default": false,
"description": "Do not add materials dependencies to package.json (e.g., --skipPackageJson)"
},
"theme": {
"enum": ["indigo-pink", "deeppurple-amber", "pink-bluegrey", "purple-green", "custom"],
"default": "indigo-pink",
"description": "The theme to apply"
}
},
"required": []
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment