Skip to content

Commit e7babfe

Browse files
authored
Merge pull request #9116 from emberjs/renovate/code-quality
fix(deps): update code-quality
2 parents 870562b + e00005f commit e7babfe

File tree

6 files changed

+109
-109
lines changed

6 files changed

+109
-109
lines changed

config/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
"@babel/core": "^7.23.3",
77
"@babel/eslint-parser": "^7.23.3",
88
"@babel/plugin-proposal-decorators": "^7.23.3",
9-
"@typescript-eslint/eslint-plugin": "^6.10.0",
10-
"@typescript-eslint/parser": "^6.10.0",
11-
"eslint": "^8.53.0",
9+
"@typescript-eslint/eslint-plugin": "^6.11.0",
10+
"@typescript-eslint/parser": "^6.11.0",
11+
"eslint": "^8.54.0",
1212
"eslint-config-prettier": "^9.0.0",
1313
"eslint-plugin-import": "^2.29.0",
1414
"eslint-plugin-mocha": "^10.2.0",

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"globby": "^14.0.0",
5151
"lerna-changelog": "^2.2.0",
5252
"pnpm-sync-dependencies-meta-injected": "0.0.10",
53-
"prettier": "^3.0.3",
53+
"prettier": "^3.1.0",
5454
"rimraf": "^5.0.5",
5555
"semver": "^7.5.4",
5656
"silent-error": "^1.1.1",

packages/-ember-data/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@
125125
"@glimmer/tracking": "^1.1.2",
126126
"@warp-drive/internal-config": "workspace:5.5.0-alpha.11",
127127
"ember-source": "~5.4.0",
128-
"eslint": "^8.53.0"
128+
"eslint": "^8.54.0"
129129
},
130130
"engines": {
131131
"node": ">= 20.9.0"

packages/json-api/src/-private/cache.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -1117,8 +1117,8 @@ export default class JSONAPICache implements Cache {
11171117
cached.inflightAttrs && attr in cached.inflightAttrs
11181118
? cached.inflightAttrs[attr]
11191119
: cached.remoteAttrs && attr in cached.remoteAttrs
1120-
? cached.remoteAttrs[attr]
1121-
: undefined;
1120+
? cached.remoteAttrs[attr]
1121+
: undefined;
11221122
if (existing !== value) {
11231123
cached.localAttrs = cached.localAttrs || (Object.create(null) as Record<string, Value>);
11241124
cached.localAttrs[attr] = value;
@@ -1645,8 +1645,8 @@ function patchLocalAttributes(cached: CachedResource): boolean {
16451645
inflightAttrs && attr in inflightAttrs
16461646
? inflightAttrs[attr]
16471647
: remoteAttrs && attr in remoteAttrs
1648-
? remoteAttrs[attr]
1649-
: undefined;
1648+
? remoteAttrs[attr]
1649+
: undefined;
16501650

16511651
if (existing === localAttrs[attr]) {
16521652
hasAppliedPatch = true;

packages/request/src/fetch.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ const _fetch: typeof fetch =
1919
typeof fetch !== 'undefined'
2020
? fetch
2121
: typeof FastBoot !== 'undefined'
22-
? (FastBoot.require('node-fetch') as typeof fetch)
23-
: ((() => {
24-
throw new Error('No Fetch Implementation Found');
25-
}) as typeof fetch);
22+
? (FastBoot.require('node-fetch') as typeof fetch)
23+
: ((() => {
24+
throw new Error('No Fetch Implementation Found');
25+
}) as typeof fetch);
2626

2727
// clones a response in a way that should still
2828
// allow it to stream
@@ -136,8 +136,8 @@ const Fetch = {
136136
const errors = Array.isArray(errorPayload)
137137
? errorPayload
138138
: isDict(errorPayload) && Array.isArray(errorPayload.errors)
139-
? errorPayload.errors
140-
: null;
139+
? errorPayload.errors
140+
: null;
141141

142142
const msg = `[${response.status}] ${response.statusText ? response.statusText + ' ' : ''}- ${response.url}`;
143143

0 commit comments

Comments
 (0)