Skip to content

Latest commit

 

History

History
70 lines (37 loc) · 1.8 KB

CHANGELOG.md

File metadata and controls

70 lines (37 loc) · 1.8 KB

2.1.0 (2022-11-27)

Features

2.0.1 (2022-09-19)

Bug Fixes

  • do not use extra path.posix when not needed (068e4b2)

2.0.0 (2022-09-08)

Features

BREAKING CHANGES

  • rename baka.render to baka.compile
// old
baka.render( options: BakaOptions );

// new
baka.compile( file: string, options: CompileOptions );
  • change baka.build signature
// old
baka.build( options: BakaOptions );

// new
baka.compile( file: string, outFile: string, options: BuildOptions );
  • remove baka lite

1.1.0 (2021-08-31)

Features

  • add baka annotations to allow skip and ignore files (953f4e1)

1.0.1 (2021-07-29)

Bug Fixes

  • include src folder in dist (aff2da4)

1.0.0 (2021-07-29)

Features

BREAKING CHANGES

  • use options object instead of params