Chris Thoburn
Chris Thoburn
Opening this as a tracking issue, planning on trying to tackle of some of this support soon. Note I'm not using ember-m3 and have no plans to use it soon...
With the custom record class work landing we will soon no longer require using Ember's factory system. Currently using a little bit of "intimate knowledge of how things work" we...
Currently, calling `eachAttribute` [delegates to the `baseRecordData`](https://github.com/hjdivad/ember-m3/blob/master/addon/record-data.js#L491-L493) which indiscriminately computes the attributes for [every key it knows about](https://github.com/hjdivad/ember-m3/blob/master/addon/record-data.js#L505) This has the result that non-whitelisted properties or properties that aren't meant...
If declaring a v1 addon as a peer-dependency, but not installing it as a dev-dependency, ember-auto-import will attempt to resolve it during build and blows up. ``` Build Error (WebpackBundler)...
If you don't have a test suite to run its very hard to figure out what goes in that file.
I suspect it may have something to do with how it is reaching in to discover ember-source files ``` stack: TypeError: Cannot read property '_addon' of undefined at Class._monkeyPatch_EmberDeprecate (/Users/cthoburn/Github/data/node_modules/ember-cli-deprecation-workflow/index.js:63:39)...
code.find(codeshift.Decorator) ignores decorators on nodes of type `ClassProperty` Example input code: ```ts class Foo { @service aProp; @service() bProp; @service get cProp() {} @service dProp() {} } ``` Example transform...
It would be nice to not pay the price for Dexie being in the vendor bundle / not in any key JS file until this service actually needs it. All...
improves types for store methods
playing around with a new package to centralize configuration and allow us to ship v2 addons. currently the approach won't work because package presence requires either addon-main's to report into...