File tree Expand file tree Collapse file tree 3 files changed +10
-1
lines changed Expand file tree Collapse file tree 3 files changed +10
-1
lines changed Original file line number Diff line number Diff line change
1
+ const { Formatter, Style } = require ( '../Formatter' ) ;
2
+
3
+ const FORMATTER = Formatter . build ( )
4
+ . style ( 'name' , Style . cyan )
5
+ . style ( 'created' , Style . dateDiff )
6
+ . style ( 'updated' , Style . dateDiff ) ;
7
+
8
+ module . exports = FORMATTER ;
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ const formatters = {
23
23
Pipeline : require ( './Pipeline.formatter' ) ,
24
24
Registry : require ( './Registry.formatter' ) ,
25
25
Annotation : require ( './Annotations.formatter' ) ,
26
+ StepType : require ( './StepType.formatter' ) ,
26
27
} ;
27
28
/* eslint-enable */
28
29
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " codefresh" ,
3
- "version" : " 0.31.0 " ,
3
+ "version" : " 0.31.1 " ,
4
4
"description" : " Codefresh command line utility" ,
5
5
"main" : " index.js" ,
6
6
"preferGlobal" : true ,
You can’t perform that action at this time.
0 commit comments