Jeldrik Hanschke
Jeldrik Hanschke
Rebased after #36 was merged.
Rebased after #38 was merged.
Thanks for digging into this. I'm not quite sure about the api. Default template and horizontal template would be very similar for my case - just two lines would be...
That widget api looks really good. @g-cassie thanks for your work on that! Let me know if I could help you.
Current master does not implement DDAU - at least not for all components. E.g. `{{sortable-objects}}` still modifies property passed in as `sortableObjectList` as it's shown [by this test](https://github.com/mharris717/ember-drag-drop/blob/master/tests/integration/components/sortable-objects-test.js#L65-L81). #123 was...
Please see my comment here: https://github.com/emberjs/ember.js/issues/18577#issuecomment-719001736 Not sure if this is another bug or if this fix does not address the root cause.
You could fine an example how to run the tests against different Ember CLI versions in TravisCI here: https://github.com/rwjblue/ember-cli-content-security-policy/pull/115
Testing of development server middleware registered by an addon (`serverMiddleware` hook) is another use case. E.g. ember-cli-content-security-policy verifies that correct HTTP headers are applied: https://github.com/rwjblue/ember-cli-content-security-policy/blob/9a44defc15af31e30a3e05e68f95ca092a07e70f/node-tests/e2e/deliver-test.js#L89-L97 Similar to testing with different...
> Once the index.html is an entrypoint we probably won't need webpack-subresource-integrity-embroider at all since webpack-subresource-integrity will just be able to do what it needs to do directly. From SRI...
You could workaround this limitation of Embroider similar as how webpack-subresource-integrity-embroider does: Build a Webpack plugin, which parses the `index.html` in `done` hook and adds the `publicAssetURL` to all resources...