Skip to content
This repository was archived by the owner on Jan 26, 2020. It is now read-only.

v0.7.6

Choose a tag to compare

@alidcast alidcast released this 26 Jul 18:26
· 46 commits to master since this release

Breaking changes

  • exposed way of adding head/body tags to Rogue class, which replaced bundleUrl option (#68 #66 )

Before:

const app = new Rogue(App, { bundleUrl })

Now:

const app = new Rogue(App, { 
  bodyTags: [`<script src="${bundleUrl}" defer></script>`]
})

A bit more code, but gives you more control over the tags added to your html document.

Other Improvements

  • Eliminated wallking of tree - realized it was uncessary (#65)
  • Removed uncessary initialRender flag causing hydration problems (#62)