You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -78,7 +78,7 @@ ember-cli-update --run-codemods
78
78
| --resolve-conflicts | Automatically run git mergetool if conflicts found | Boolean || false |
79
79
| --run-codemods | Run codemods to help update your code | Boolean || false |
80
80
| --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 */ }`||
82
82
| --reset | Reset your code to the default blueprint at the new version | Boolean || false |
83
83
| --compare-only | Show the changes between different versions without updating | Boolean || false |
84
84
| --stats-only | Show all calculated values regarding your project | Boolean || false |
Copy file name to clipboardExpand all lines: src/args.js
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ module.exports = {
4
4
'blueprint': {
5
5
alias: ['b'],
6
6
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")'
8
8
},
9
9
'from': {
10
10
type: 'string',
@@ -26,11 +26,11 @@ module.exports = {
26
26
},
27
27
'codemods-source': {
28
28
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:*")'
30
30
},
31
31
'codemods-json': {
32
32
type: 'string',
33
-
description: 'Supply your own codemods manifest via JSON'
33
+
description: 'Supply your own codemods manifest via JSON (`{ /* json */ }`)'
0 commit comments