Skip to content

Releases: javierlopezdeancos/erre-ele

v0.2.2

21 Dec 18:24
Compare
Choose a tag to compare

Add unsubscribe to pop state method

  • Add a public method to unsuscribe to a pop state in history

v0.2.1

21 Dec 12:33
Compare
Choose a tag to compare

Fix how update pathname when use go method

  • We are join an extra '/' when we are updating the pathname in each go action, that are not needed. We preferd set this reponsability to consumers as for example:
if (stateToTransitionIsTheInitialState) {
  rl.go('/');
  mechanism.currentId = initial;
} else {
  rl.go('/' + stateToTransition.id);
  mechanism.currentId = stateToTransition?.id;
}

v0.2.0

29 Sep 17:33
Compare
Choose a tag to compare

New buid scripts

  • Scripts to build all kind of modules posibles

v0.1.0

19 Sep 17:24
3ce3e5b
Compare
Choose a tag to compare

Initial release

  • Get params from URL
  • Push into browser history