Skip to content

Commit

Permalink
Merge pull request #1 from acorncom/patch-1
Browse files Browse the repository at this point in the history
Adding proper @ember-data package name where missing
  • Loading branch information
runspired authored Nov 16, 2018
2 parents e8ab452 + 95837ac commit 47e6fe0
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions text/0000-ember-data-packages.md
Original file line number Diff line number Diff line change
Expand Up @@ -262,32 +262,32 @@ Today, presence in the `emberjs` organization on `github` also places `ember-dat
<tr>
<td>DS.JSONAPISerializer</td>
<td>import JSONAPISerializer from 'ember-data/serializers/json-api';</td>
<td>import JSONAPISerializer from 'ember-data/serializers/json-api';</td>
<td>import JSONAPISerializer from '@ember-data/serializers/json-api';</td>
</tr>
<tr>
<td>DS.Transform</td>
<td>import Transform from 'ember-data/transform';</td>
<td>import Transform from 'ember-data/transforms';</td>
<td>import Transform from '@ember-data/transforms';</td>
</tr>
<tr>
<td>DS.DateTransform</td>
<td>import DateTransform from 'ember-data/transforms/date';</td>
<td>import { DateTransform } from 'ember-data/transforms';</td>
<td>import { DateTransform } from '@ember-data/transforms';</td>
</tr>
<tr>
<td>DS.StringTransform</td>
<td>import StringTransform from 'ember-data/transforms/string';</td>
<td>import { StringTransform } from 'ember-data/transforms';</td>
<td>import { StringTransform } from '@ember-data/transforms';</td>
</tr>
<tr>
<td>DS.NumberTransform</td>
<td>import NumberTransform from 'ember-data/transforms/number';</td>
<td>import { NumberTransform } from 'ember-data/transforms';</td>
<td>import { NumberTransform } from '@ember-data/transforms';</td>
</tr>
<tr>
<td>DS.BooleanTransform</td>
<td>import BooleanTransform from 'ember-data/transforms/boolean';</td>
<td>import { BooleanTransform } from 'ember-data/transforms';</td>
<td>import { BooleanTransform } from '@ember-data/transforms';</td>
</tr>
<tr>
<td colspan="3"><h3>@ember-data/store</h3></td>
Expand Down Expand Up @@ -376,7 +376,7 @@ Today, presence in the `emberjs` organization on `github` also places `ember-dat
#### `@ember-data/model`

1) `InternalModel` and `RootState` are tightly coupled to the store and to our provided `Model`
implementation. Overtime we need to uncouple this, but given their coupling to `Model` and our
implementation. Over time we need to uncouple this, but given their coupling to `Model` and our
desire to enable them to be eliminated from projects not using `Model`, I believe these exports
belong in `@ember-data/model` for this reason.

Expand Down

0 comments on commit 47e6fe0

Please sign in to comment.