Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(docs): Convert to native types #340

Merged
merged 4 commits into from
Jan 21, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 0 additions & 28 deletions apps/docs-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,34 +45,7 @@
"@nrg-ui/css": "workspace:*",
"@nrg-ui/standards": "workspace:*",
"@tsconfig/ember": "^3.0.8",
"@types/ember": "^4.0.11",
"@types/ember-data": "^4.4.16",
"@types/ember-data__adapter": "^4.0.6",
"@types/ember-data__model": "^4.0.5",
"@types/ember-data__serializer": "^4.0.6",
"@types/ember-data__store": "^4.0.7",
"@types/ember__application": "^4.0.11",
"@types/ember__array": "^4.0.10",
"@types/ember__component": "^4.0.22",
"@types/ember__controller": "^4.0.12",
"@types/ember__debug": "^4.0.8",
"@types/ember__destroyable": "^4.0.5",
"@types/ember__engine": "^4.0.11",
"@types/ember__error": "^4.0.6",
"@types/ember__helper": "^4.0.9",
"@types/ember__modifier": "^4.0.9",
"@types/ember__object": "^4.0.12",
"@types/ember__owner": "^4.0.9",
"@types/ember__polyfills": "^4.0.6",
"@types/ember__routing": "^4.0.22",
"@types/ember__runloop": "^4.0.10",
"@types/ember__service": "^4.0.9",
"@types/ember__string": "^3.16.3",
"@types/ember__template": "^4.0.7",
"@types/ember__test": "^4.0.6",
"@types/ember__utils": "^4.0.7",
"@types/qunit": "^2.19.12",
"@types/rsvp": "^4.0.9",
"broccoli-asset-rev": "^3.0.0",
"concurrently": "^8.2.2",
"ember-auto-import": "^2.10.0",
Expand All @@ -85,7 +58,6 @@
"ember-cli-inject-live-reload": "^2.1.0",
"ember-cli-sri": "^2.1.1",
"ember-cli-terser": "^4.0.2",
"ember-data": "~5.3.9",
"ember-fetch": "^8.1.2",
"ember-freestyle": "^0.21.0",
"ember-intl": "^7.1.1",
Expand Down
1 change: 1 addition & 0 deletions apps/docs-app/types/global.d.ts
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
import '@glint/environment-ember-loose';
import 'ember-source/types';
2 changes: 0 additions & 2 deletions packages/ember-core/src/services/toast.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,6 @@ export default class Toast extends Service {
@action
remove(message: ToastOptions) {
if (message.timeoutReference) {
// @ts-expect-error - ember-lifeline currently uses DT types, not native types
// https://github.com/ember-lifeline/ember-lifeline/issues/1178
cancelTask(this, message.timeoutReference);
}
const index = this.queue.indexOf(message);
Expand Down
Loading
Loading