jaydgruber
jaydgruber
Bug: require-computed-property-dependencies incorrectly flags a key w/ nesting after brace expansion
### What ```javascript Ember.computed('article.{comments,title}.innerProperty', function() { return this.article.title.innerProperty + someFunction(this.article.comments.innerProperty); }); ``` throws from `require-computed-property-dependencies`. the auto-fixer will expand the keys, which causes `use-brace-expansion` to throw: ```javascript Ember.computed('article.comments.innerProperty', 'article.title.innerProperty', function...
```javascript filingRequestsUS: filterBy('filingRequests', 'data.country', 'US'), // throws the runtime warning: // WARNING: Dependent keys containing @each only work one level deep. // You used the key "[email protected]" which is invalid....
### What - updates the readme for [3.x release](https://github.com/adopted-ember-addons/ember-pikaday/blob/master/CHANGELOG.md#v300-2020-04-15) ### Why - some 2.x-specific stuff in the readme seemed dated
### What - when using [server-side-single-map](https://github.com/joeldenning/import-map-overrides/blob/main/docs/configuration.md#server-side-single-map), using the overrides UI on multiple routes can cause overrides persist in cookies even after they have been deleted in the UI. ```js //...
vue-router seems to be intercepting events after it should have already been destroyed. It seems like after single-spa tells the vue app to unmount, vue-router is continuing to try and...