(onlineEditor, projectType)
| 70 | * branch for an editor as well as the tagged version. |
| 71 | */ |
| 72 | let getBranches = (onlineEditor, projectType) => { |
| 73 | let editorBranch = `${onlineEditor}-${projectType}-output${branchSuffix}`; |
| 74 | |
| 75 | if (isLatest) { |
| 76 | return [editorBranch, `${editorBranch}-v${version}`]; |
| 77 | } |
| 78 | |
| 79 | return [`${editorBranch}-v${version}`]; |
| 80 | }; |
| 81 | |
| 82 | let name = command === 'new' ? 'my-app' : 'my-addon'; |
| 83 | let projectType = command === 'new' ? 'app' : 'addon'; |
no outgoing calls
no test coverage detected
searching dependent graphs…