Skip to content

Releases: ItsJonQ/genki

Genki - v0.2.1

15 Oct 17:05
Compare
Choose a tag to compare

Update dependencies

This update bumps some dependencies to their latest versions

Genki - v0.2.0

04 Jul 18:46
Compare
Choose a tag to compare

Update dependencies

For security!

Genki - v0.1.0

28 May 16:48
Compare
Choose a tag to compare

Updates

Slight adjustments were needed in lib/genki to follow the new JSDOM structure.

The latest v11.0.0 of JSDOM brings some speed boosts! πŸš€

Genki - v0.0.5

15 Apr 01:47
Compare
Choose a tag to compare

Updates

  • Update to seed-barista#v0.3.2 for enableCSSOM options
  • Disable enableCSSOM by default
  • Add jshint as a dev-dependency
  • Add linting as part of the test process
  • Update tests

Resolves: #6

Genki - v0.0.4

13 Apr 17:28
Compare
Choose a tag to compare

Updates

  • Refactor genki.js when required to have fresh JSDOM environments on start
  • Refactor generateStyles() -> addStyle() to push new barista styles to a styles array
  • Add tests for addStyle()

Example:

var world = genki.start();

world.addStyle({
  content: `.hosei { background: blue }`
});

world.addStyle({
  content: `.hamada { background: red }`
});

Resolves: #3