Skip to content

Releases: axross/bemmer

v1.1.0

13 Apr 09:10
Compare
Choose a tag to compare

Bugfix

  • #6 Remove uniquenizing in Bem.fromFullClassName()

v1.0.0

08 Mar 07:39
Compare
Choose a tag to compare

👏🎉 v1.0.0 🎉👏

Breaking changes

  • Change API from bemmer.create to bemmer.createBuilder.
    • But it has still maintained as alias to bemmer.create.

v0.4.1

28 Sep 02:08
Compare
Choose a tag to compare

Changes

  • the First argument of builder function must be a String.

Before:

const builder = Bemmer.create('aaa');

builder(null, { bbb: true });
// => "aaa aaa--bbb"

After:

const builder = Bemmer.create('aaa');

builder(null, { bbb: true });
// TypeError!

builder('', { bbb: true });
// => "aaa aaa--bbb"

v0.3.2

16 Sep 11:05
Compare
Choose a tag to compare

Changes

  • #3 Bugfix: Bemmer.create() break block with hyphen