-
Notifications
You must be signed in to change notification settings - Fork 257
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat(schematics): add prompts * feat(schematics): grammar review changes
- Loading branch information
1 parent
68658ec
commit 42ab761
Showing
3 changed files
with
29 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
|
||
{ | ||
"$schema": "http://json-schema.org/schema", | ||
"id": "Scully-ng-add-blog", | ||
"title": "Scully ng-add-blog schematic", | ||
"type": "object", | ||
"properties": { | ||
"name": { | ||
"type": "string", | ||
"description": "add the title for the post" | ||
} | ||
}, | ||
"required": [] | ||
} | ||
"$schema": "http://json-schema.org/schema", | ||
"id": "Scully-ng-add-blog", | ||
"title": "Scully ng-add-blog schematic", | ||
"type": "object", | ||
"properties": { | ||
"name": { | ||
"type": "string", | ||
"description": "add the title for the post", | ||
"x-prompt": "What title do you want to use for the post?" | ||
} | ||
}, | ||
"required": [] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
{ | ||
"$schema": "http://json-schema.org/schema", | ||
"id": "scully-ng-add", | ||
"title": "scully ng-add schematic", | ||
"type": "object", | ||
"properties": { | ||
"blog": { | ||
"type": "boolean", | ||
"description": "add full blog" | ||
} | ||
}, | ||
"required": [] | ||
"$schema": "http://json-schema.org/schema", | ||
"id": "scully-ng-add", | ||
"title": "scully ng-add schematic", | ||
"type": "object", | ||
"properties": { | ||
"blog": { | ||
"type": "boolean", | ||
"description": "add full blog", | ||
"x-prompt": "Should we set up a blog for you?" | ||
} | ||
}, | ||
"required": [] | ||
} |