Skip to content

refactor(schematics): remove comments in collection.json #19077

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 17, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions src/material/schematics/collection.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
// This is the root config file where the schematics are defined.
{
"$schema": "./node_modules/@angular-devkit/schematics/collection-schema.json",
"schematics": {
// Adds Angular Material to an application without changing any templates
"ng-add": {
"description": "Adds Angular Material to the application without affecting any templates",
"factory": "./ng-add/index",
Expand All @@ -15,35 +13,30 @@
"factory": "./ng-add/setup-project",
"schema": "./ng-add/schema.json"
},
// Create a dashboard component
"dashboard": {
"description": "Create a card-based dashboard component",
"factory": "./ng-generate/dashboard/index",
"schema": "./ng-generate/dashboard/schema.json",
"aliases": ["material-dashboard"]
},
// Creates a table component
"table": {
"description": "Create a component that displays data with a data-table",
"factory": "./ng-generate/table/index",
"schema": "./ng-generate/table/schema.json",
"aliases": ["material-table"]
},
// Creates toolbar and navigation components
"navigation": {
"description": "Create a component with a responsive sidenav for navigation",
"factory": "./ng-generate/navigation/index",
"schema": "./ng-generate/navigation/schema.json",
"aliases": ["material-nav", "materialNav", "nav"]
},
// Create a file tree component
"tree": {
"description": "Create a file tree component.",
"factory": "./ng-generate/tree/index",
"schema": "./ng-generate/tree/schema.json",
"aliases": ["material-tree"]
},
// Creates a address form component
"addressForm": {
"description": "Create a component with a address form",
"factory": "./ng-generate/address-form/index",
Expand Down