ember-time-machine icon indicating copy to clipboard operation
ember-time-machine copied to clipboard

An object state management solution.

Results 5 ember-time-machine issues
Sort by recently updated
recently updated
newest added

This PR upgrades `ember-cli` to 3.5.1. It also runs codemods for es6 modules. Largely, it removes bower dependencies _for addon consumers_ but not for development mode. In development mode, some...

> Uncaught Error: Could not find module `ember` imported from `ember-time-machine/proxies/object` Not sure what's going on here, but after installing and importing (`import TimeMachine from 'ember-time-machine';`), I'm seeing the above...

This PR introduces new functionality without breaking the existing one. Currently the undo/redo stack consists of list of changes. Therefore it is not possible to make multiples changes and be...

We have a scenario where one action updates numerous properties on an object. ``` actions: { changeItemType(item, type) { setProperties(item, { type, options: options.findBy('type', type) }); } } ``` When...

I've spent a few days getting this integrated on a relatively large and complex project and have a ton of questions, but for right now... Is there a way to...