Skip to content

Commit

Permalink
[BUGFIX beta] Fix Rollup warning about unresolved dependency
Browse files Browse the repository at this point in the history
Fixes the following warning:

```
'@ember-data/store' is imported by -private/system/model/model.js, but could not be resolved – treating it as an external dependency
```
  • Loading branch information
HeroicEric authored and igorT committed Sep 6, 2019
1 parent 37eb8cb commit a029725
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/store/addon/-private/system/model/model.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import InternalModel from './internal-model';
import RootState from './states';
import { RECORD_DATA_ERRORS, RECORD_DATA_STATE, REQUEST_SERVICE } from '@ember-data/canary-features';
import coerceId from '../coerce-id';
import { recordIdentifierFor } from '@ember-data/store';
import { recordIdentifierFor } from '../store/internal-model-factory';
import { InvalidError } from '@ember-data/adapter/error';

const { changeProperties } = Ember;
Expand Down

0 comments on commit a029725

Please sign in to comment.