Skip to content

Releases: gabrielcsapo/ascii-pipeline

0.2.0

08 Dec 08:40
Compare
Choose a tag to compare
  • fixes multi-stage pipelines to have separator between nested pipelines

before

┬ foo       ┬ install        ┬ ┬ lint         ┬ ┬ coverage         ┬ ┬ test     ┬ ┬ docs                  ─    
β”” echo $FOO β”œ npm --version  ─ β”” npm run lint β”˜ β”” npm run coverage β”˜ β”” npm test β”˜ β”” npm run generate-docs β”˜    
            β”œ node --version ─                                                                             
            β”” npm            β”˜

after

┬ foo       ┬ ─ ┬ install        ┬ ─  ┬ lint         ┬ ─  ┬ coverage         ┬ ─  ┬ test     ┬ ─  ┬ docs                  ┬ ─
β”” echo $FOO β”˜   β”œ npm --version  ─    β”” npm run lint β”˜    β”” npm run coverage β”˜    β”” npm test β”˜    β”” npm run generate-docs β”˜
                β”œ node --version ─                                                                                        
                β”” npm            β”˜                                                                        
  • fixed padding issue with nested children

before

─ starting ┬ nested ┬ ─ ending ─ ┬ nested ─  
           β”œ child  ─           β”œ child  ─  
           β”” child1 β”˜           β”” child1 β”˜  

after

─ starting ┬ nested ┬  ─ ending ─ ┬ nested ┬ ─
           β”œ child  ─             β”œ child  ─
           β”” child1 β”˜             β”” child1 β”˜

0.1.0

27 Nov 06:25
Compare
Choose a tag to compare
  • updates babel-core -> @babel/core
  • moves from eslint -> standard
  • only publish what is needed

0.0.3

03 Jan 05:52
Compare
Choose a tag to compare
  • ensures there is a buffer character between all values
  • does not do a look behind instead places the right and left signs by the value being assessed.

before

─ starting ┬ nested ┬ nested ┬ ending ─
           β”œ child  β”œ child  ─         
           β”” child1 β”” child1 β”˜   

after

─ starting ┬ nested ┬ ┬ nested ┬ ─ ending ─  
           β”œ child  ─ β”œ child  ─            
           β”” child1 β”˜ β”” child1 β”˜            

0.0.2

01 Jan 06:12
Compare
Choose a tag to compare
  • fixes spacing with nested values that have longer names than the parent
  • ensure the height of the matrix is the largest height possible

0.0.1

01 Jan 05:20
Compare
Choose a tag to compare
  • basic usage documented and tested
  • works with 2 dimensional nested tasks