File tree Expand file tree Collapse file tree 5 files changed +294
-249
lines changed
Expand file tree Collapse file tree 5 files changed +294
-249
lines changed Original file line number Diff line number Diff line change 1- import * as Generator from "yeoman-generator" ;
21import * as chalk from "chalk" ;
32import * as config from "../config" ;
43import * as repositoryUtils from "../repositoryUtils" ;
54
6- export default class ListCompatibleUpdatesGenerator extends Generator {
5+ export default class ListCompatibleUpdates {
76 async checkForCompatibleUpdates ( ) : Promise < void > {
87 const allNewerVersions = ( await repositoryUtils . getAvailableTags ( ) ) . filter (
98 ( name ) => config . isFabloVersionSupported ( name ) && name > config . fabloVersion ,
Original file line number Diff line number Diff line change 1- import * as Generator from "yeoman-generator" ;
1+
22import * as config from "../config" ;
33import * as repositoryUtils from "../repositoryUtils" ;
44
5- export default class ListVersionsGenerator extends Generator {
5+ export default class ListVersions {
66 async printAllVersions ( ) : Promise < void > {
77 const allVersions = await repositoryUtils . getAvailableTags ( ) ;
88 const versionsSortedAndMarked = allVersions
You can’t perform that action at this time.
0 commit comments