Skip to content

refactor: update $schema and id keyword #22459

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 12, 2021
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions src/cdk/schematics/ng-add/schema.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/schema",
"id": "angular-cdk-ng-add",
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "angular-cdk-ng-add",
"title": "Angular CDK ng-add",
"type": "object",
"properties": {
Expand Down
4 changes: 2 additions & 2 deletions src/cdk/schematics/ng-generate/drag-drop/schema.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/schema",
"id": "CdkSchematicsDragDrop",
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "CdkSchematicsDragDrop",
"title": "Angular CDK Drag and Drop schematic",
"type": "object",
"properties": {
Expand Down
4 changes: 2 additions & 2 deletions src/material/schematics/ng-add/schema.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/schema",
"id": "angular-material-ng-add",
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "angular-material-ng-add",
"title": "Angular Material ng-add schematic",
"type": "object",
"properties": {
Expand Down
4 changes: 2 additions & 2 deletions src/material/schematics/ng-generate/address-form/schema.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/schema",
"id": "SchematicsMaterialAddressForm",
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "SchematicsMaterialAddressForm",
"title": "Material Address Form Options Schema",
"type": "object",
"properties": {
Expand Down
4 changes: 2 additions & 2 deletions src/material/schematics/ng-generate/dashboard/schema.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/schema",
"id": "SchematicsMaterialDashboard",
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "SchematicsMaterialDashboard",
"title": "Material Dashboard Options Schema",
"type": "object",
"properties": {
Expand Down
4 changes: 2 additions & 2 deletions src/material/schematics/ng-generate/navigation/schema.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/schema",
"id": "SchematicsMaterialNavigation",
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "SchematicsMaterialNavigation",
"title": "Material Navigation Options Schema",
"type": "object",
"properties": {
Expand Down
4 changes: 2 additions & 2 deletions src/material/schematics/ng-generate/table/schema.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/schema",
"id": "SchematicsMaterialTable",
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "SchematicsMaterialTable",
"title": "Material Table Options Schema",
"type": "object",
"properties": {
Expand Down
4 changes: 2 additions & 2 deletions src/material/schematics/ng-generate/theming-api/schema.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/schema",
"id": "SchematicsMaterialThemingApi",
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "SchematicsMaterialThemingApi",
"title": "Material Theming API migration",
"type": "object",
"properties": {}
Expand Down
4 changes: 2 additions & 2 deletions src/material/schematics/ng-generate/tree/schema.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/schema",
"id": "SchematicsMaterialTree",
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "SchematicsMaterialTree",
"title": "Material Tree Options Schema",
"type": "object",
"properties": {
Expand Down