Skip to content

Commit

Permalink
fix: replaced lodash-es with lodash
Browse files Browse the repository at this point in the history
  • Loading branch information
hilljh82 committed Jul 11, 2022
1 parent f1bcc22 commit 8970551
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion addon/-lib/access-token.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { alias } from '@ember/object/computed';
import { isPresent, isEmpty } from '@ember/utils';
import { A } from '@ember/array';
import { some } from 'lodash-es';
import { some } from 'lodash';
import { KJUR } from 'jsrsasign';

export default class AccessToken {
Expand Down
2 changes: 1 addition & 1 deletion addon/-lib/token-metadata.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { computed } from '@ember/object';
import { alias, bool } from '@ember/object/computed';
import { isPresent } from '@ember/utils';
import { A } from '@ember/array';
import { some } from 'lodash-es';
import { some } from 'lodash';

export default EmberObject.extend ({
audience: alias ('aud'),
Expand Down
2 changes: 1 addition & 1 deletion addon/services/session.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { inject as service } from '@ember/service';
import { action, computed, get, set } from '@ember/object';
import { Promise } from 'rsvp';
import { A } from '@ember/array';
import { omit } from 'lodash-es';
import { omit } from 'lodash';

import AccessToken from "../-lib/access-token";
import TempSession from '../-lib/temp-session';
Expand Down

0 comments on commit 8970551

Please sign in to comment.