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
1. Updating a project's boilerplate code from an older Ember version to a newer one like 3.4.0 to 3.20.0 for example. These are called base blueprints and there are 3 types officially provided by ember-cli: `app`, `addon`, and `glimmer`.
13
14
- This is different from the existing `ember init` command. That command tries to reset your project back to a brand new project. It removes all your changes and additions.
14
15
2. Updating boilerplate code for a blueprint from an Ember addon from an older version to a newer one. These are called custom blueprints.
@@ -315,8 +316,8 @@ And then you're done! You have a freshly updated app (or addon). As noted, you c
315
316
316
317
Need help using `git mergetool`? Here are some starting points:
Copy file name to clipboardExpand all lines: src/args.js
+14-9Lines changed: 14 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -4,20 +4,24 @@ module.exports = {
4
4
'package-name': {
5
5
alias: ['package','p'],
6
6
type: 'string',
7
-
description: 'Provide a package that can contain many blueprints ("@glimmer/blueprint", "git+https://[email protected]/tildeio/libkit.git", "../blueprint")'
7
+
description:
8
+
'Provide a package that can contain many blueprints ("@glimmer/blueprint", "git+https://[email protected]/tildeio/libkit.git", "../blueprint")'
8
9
},
9
-
'blueprint': {
10
+
blueprint: {
10
11
alias: ['b'],
11
12
type: 'string',
12
-
description: 'Provide a custom blueprint for use in the update ("@glimmer/blueprint", "git+https://[email protected]/tildeio/libkit.git", "../blueprint")'
13
+
description:
14
+
'Provide a custom blueprint for use in the update ("@glimmer/blueprint", "git+https://[email protected]/tildeio/libkit.git", "../blueprint")'
13
15
},
14
-
'from': {
16
+
from: {
15
17
type: 'string',
16
-
description: 'Use a starting version that is different than what is in your package.json ("2.9.1")'
18
+
description:
19
+
'Use a starting version that is different than what is in your package.json ("2.9.1")'
17
20
},
18
-
'to': {
21
+
to: {
19
22
type: 'string',
20
-
description: 'Update to a version that isn\'t latest ("2.14.1", "~2.15", "latest", "beta")'
23
+
description:
24
+
'Update to a version that isn\'t latest ("2.14.1", "~2.15", "latest", "beta")'
21
25
},
22
26
'resolve-conflicts': {
23
27
type: 'boolean',
@@ -31,13 +35,14 @@ module.exports = {
31
35
},
32
36
'codemods-source': {
33
37
type: 'string',
34
-
description: 'Supply your own codemods manifest via URL ("ember-app-codemods-manifest@*", "git+https://github.com/ember-cli/ember-app-codemods-manifest.git#semver:*")'
38
+
description:
39
+
'Supply your own codemods manifest via URL ("ember-app-codemods-manifest@*", "git+https://github.com/ember-cli/ember-app-codemods-manifest.git#semver:*")'
35
40
},
36
41
'codemods-json': {
37
42
type: 'string',
38
43
description: 'Supply your own codemods manifest via JSON (`{ /* json */ }`)'
39
44
},
40
-
'reset': {
45
+
reset: {
41
46
type: 'boolean',
42
47
default: false,
43
48
description: 'Reset your code to the default blueprint at the new version'
0 commit comments