Skip to content

Commit

Permalink
Eliminate remaining deprecations
Browse files Browse the repository at this point in the history
  • Loading branch information
lukemelia committed Sep 16, 2023
1 parent bf8a22c commit 6caef24
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion addon/components/mobiledoc-editor/component.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { _getCurrentRunLoop, schedule, begin, end, join } from '@ember/runloop';
import { copy } from '@ember/object/internals';
import { copy } from 'ember-copy';
import { A } from '@ember/array';
import { camelize, capitalize } from '@ember/string';
import EmberObject, { computed } from '@ember/object';
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
"ember-auto-import": "^2.4.3",
"ember-cli-babel": "^7.26.10",
"ember-cli-htmlbars": "^5.7.2",
"ember-copy": "^2.0.1",
"ember-wormhole": "^0.6.0",
"mobiledoc-dom-renderer": "^0.7.2",
"mobiledoc-kit": "~0.13.3"
Expand Down
4 changes: 1 addition & 3 deletions tests/dummy/config/deprecation-workflow.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
/* eslint-disable no-undef */
self.deprecationWorkflow = self.deprecationWorkflow || {};
self.deprecationWorkflow.config = {
workflow: [
{ handler: 'silence', matchId: 'ember-runtime.deprecate-copy-copyable' },
],
workflow: [],
};
7 changes: 7 additions & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5287,6 +5287,13 @@ ember-compatibility-helpers@^1.1.2, ember-compatibility-helpers@^1.2.1:
fs-extra "^9.1.0"
semver "^5.4.1"

ember-copy@^2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/ember-copy/-/ember-copy-2.0.1.tgz#13192b12a250324bb4a8b4547a680b113f4e3041"
integrity sha512-N/XFvZszrzyyX4IcNoeK4mJvIItNuONumhPLqi64T8NDjJkxBj4Pq61rvMkJx/9eZ8alzE4I8vYKOLxT0FvRuQ==
dependencies:
ember-cli-babel "^7.22.1"

ember-destroyable-polyfill@^2.0.3:
version "2.0.3"
resolved "https://registry.yarnpkg.com/ember-destroyable-polyfill/-/ember-destroyable-polyfill-2.0.3.tgz#1673ed66609a82268ef270a7d917ebd3647f11e1"
Expand Down

0 comments on commit 6caef24

Please sign in to comment.