Skip to content

Commit

Permalink
chore(deps): update code-quality (#8311)
Browse files Browse the repository at this point in the history
* chore(deps): update code-quality

* fix TS

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Chris Thoburn <[email protected]>
  • Loading branch information
renovate[bot] and runspired authored Dec 7, 2022
1 parent 55e137e commit 608f90c
Show file tree
Hide file tree
Showing 6 changed files with 166 additions and 155 deletions.
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"@types/ember__application": "^4.0.4",
"@types/ember__array": "^4.0.3",
"@types/ember__component": "^4.0.11",
"@types/ember__controller": "^4.0.3",
"@types/ember__controller": "^4.0.4",
"@types/ember__debug": "^4.0.3",
"@types/ember__engine": "^4.0.4",
"@types/ember__error": "^4.0.1",
Expand All @@ -66,8 +66,8 @@
"@types/htmlbars-inline-precompile": "^3.0.0",
"@types/qunit": "^2.19.3",
"@types/rsvp": "^4.0.4",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"babel-plugin-debug-macros": "^0.3.4",
"babel-plugin-filter-imports": "^4.0.0",
"babel6-plugin-strip-class-callcheck": "^6.0.0",
Expand Down Expand Up @@ -107,15 +107,15 @@
"ember-source": "~4.8.2",
"ember-source-channel-url": "^3.0.0",
"ember-try": "^2.0.0",
"eslint": "^8.27.0",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-ember": "^11.2.0",
"eslint-plugin-ember": "^11.2.1",
"eslint-plugin-ember-data": "link:./packages/unpublished-eslint-rules",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-qunit": "^7.3.2",
"eslint-plugin-qunit": "^7.3.4",
"eslint-plugin-simple-import-sort": "^8.0.0",
"execa": "^5.1.1",
"fromentries": "^1.3.2",
Expand All @@ -125,15 +125,15 @@
"json-typescript": "^1.1.2",
"lerna-changelog": "^2.2.0",
"loader.js": "^4.7.0",
"prettier": "^2.7.1",
"prettier": "^2.8.0",
"qunit": "^2.19.3",
"qunit-dom": "^2.0.0",
"rimraf": "^3.0.2",
"rsvp": "^4.8.5",
"semver": "^7.3.8",
"silent-error": "^1.1.1",
"testem": "^3.10.0",
"typescript": "~4.8.4",
"typescript": "~4.9.3",
"url": "^0.11.0",
"webpack": "^5.75.0",
"yuidocjs": "^0.10.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/request/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"@rollup/plugin-node-resolve": "^15.0.1",
"tslib": "^2.4.0",
"walk-sync": "^3.0.0",
"typescript": "^4.8.4"
"typescript": "^4.9.3"
},
"ember": {
"edition": "octane"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ export class NonSingletonRecordDataManager implements RecordData {
// called by something V1
if (!isStableIdentifier(identifier)) {
data = identifier as JsonApiResource;
hasRecord = data as boolean;
hasRecord = data as unknown as boolean;
identifier = this.#identifier;
}
if (this.#isDeprecated(recordData)) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ class IdentifierArray {
const args: unknown[] = Array.prototype.slice.call(arguments);
assert(`Cannot start a new array transaction while a previous transaction is underway`, !transaction);
transaction = true;
let result = Reflect.apply(target[prop] as ProxiedMethod, receiver, args) as unknown;
let result: unknown = Reflect.apply(target[prop] as ProxiedMethod, receiver, args);
self[MUTATE]!(prop as string, args, result);
addToTransaction(_TAG);
// TODO handle cache updates
Expand Down
2 changes: 1 addition & 1 deletion packages/tracking/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"@rollup/plugin-node-resolve": "^15.0.1",
"rollup": "^3.5.1",
"tslib": "^2.4.1",
"typescript": "^4.8.4",
"typescript": "^4.9.3",
"walk-sync": "^3.0.0"
},
"ember": {
Expand Down
Loading

0 comments on commit 608f90c

Please sign in to comment.