Skip to content

Releases: joneff/baka

v2.1.0

27 Nov 17:22
Compare
Choose a tag to compare

2.1.0 (2022-11-27)

Features

v2.0.1

19 Sep 12:13
Compare
Choose a tag to compare

2.0.1 (2022-09-19)

Bug Fixes

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

v2.0.0

08 Sep 07:00
Compare
Choose a tag to compare

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

v1.1.0

31 Aug 13:58
Compare
Choose a tag to compare

1.1.0 (2021-08-31)

Features

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

v1.0.1

29 Jul 08:24
Compare
Choose a tag to compare

1.0.1 (2021-07-29)

Bug Fixes

  • include src folder in dist (aff2da4)

v1.0.0

29 Jul 07:34
Compare
Choose a tag to compare

1.0.0 (2021-07-29)

Features

BREAKING CHANGES

  • use options object instead of params