Skip to content

Commit 2d62a6a

Browse files
author
Kelly Selden
committed
add examples to options
1 parent 58e4e44 commit 2d62a6a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ ember-cli-update --run-codemods
7878
| --resolve-conflicts | Automatically run git mergetool if conflicts found | Boolean | | false |
7979
| --run-codemods | Run codemods to help update your code | Boolean | | false |
8080
| --codemods-source | Supply your own codemods manifest via URL | String | "ember-app-codemods-manifest@*" "git+https://github.com/ember-cli/ember-app-codemods-manifest.git#semver:*" | |
81-
| --codemods-json | Supply your own codemods manifest via JSON | String | '{ /* json */ }' | |
81+
| --codemods-json | Supply your own codemods manifest via JSON | String | `{ /* json */ }` | |
8282
| --reset | Reset your code to the default blueprint at the new version | Boolean | | false |
8383
| --compare-only | Show the changes between different versions without updating | Boolean | | false |
8484
| --stats-only | Show all calculated values regarding your project | Boolean | | false |

src/args.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ module.exports = {
44
'blueprint': {
55
alias: ['b'],
66
type: 'string',
7-
description: 'Provide a custom blueprint for use in the update'
7+
description: 'Provide a custom blueprint for use in the update ("@glimmer/blueprint", "git+https://[email protected]/tildeio/libkit.git", "../blueprint")'
88
},
99
'from': {
1010
type: 'string',
@@ -26,11 +26,11 @@ module.exports = {
2626
},
2727
'codemods-source': {
2828
type: 'string',
29-
description: 'Supply your own codemods manifest via URL'
29+
description: 'Supply your own codemods manifest via URL ("ember-app-codemods-manifest@*", "git+https://github.com/ember-cli/ember-app-codemods-manifest.git#semver:*")'
3030
},
3131
'codemods-json': {
3232
type: 'string',
33-
description: 'Supply your own codemods manifest via JSON'
33+
description: 'Supply your own codemods manifest via JSON (`{ /* json */ }`)'
3434
},
3535
'reset': {
3636
type: 'boolean',

0 commit comments

Comments
 (0)