Bryan Hunt
Bryan Hunt
Is this issue why I'm seeing my stack line numbers be wrong when running mocha tests with `ts-node/register`?
Any plans to fix this? Kinda makes Mirage unusable.
@IanVS Thanks for the update.
Just discovered that if I make a second change to the "deliverables" field, I don't get a change in the "subscribers" ``` {deliverables: Array(2), subscribers: true} {subscribers: true} {} {deliverables:...
I have an example project that demonstrates this issue. ``` git clone https://github.com/BryanHunt/auto-save-test.git cd auto-save-test npm install ember server ``` Open your browser http://localhost:4200 Click on one of the two...
I don't think my autosave is aggressive at all. When isDirty goes active, I request a save. The save yields for 3 seconds. If there is another change, the save...
Aren't there cases where a user would want more than one version of a bundle active?
FWIW, I find Resolve way too slow. I always add the bundles I want manually. I’ve also see cases where Resolve resulted in a system that wouldn’t work. > On...
It depends on how you are doing authentication and authorization in your REST service. If you are managing authentication and authorization on a per method basis, then it's up to...
There is no way to automatically detect JAX-RS annotations. This is by OSGi design. You must register your resources using the Activator as you are doing now. You can also...