File tree 6 files changed +109
-109
lines changed
6 files changed +109
-109
lines changed Original file line number Diff line number Diff line change 6
6
"@babel/core" : " ^7.23.3" ,
7
7
"@babel/eslint-parser" : " ^7.23.3" ,
8
8
"@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" ,
12
12
"eslint-config-prettier" : " ^9.0.0" ,
13
13
"eslint-plugin-import" : " ^2.29.0" ,
14
14
"eslint-plugin-mocha" : " ^10.2.0" ,
Original file line number Diff line number Diff line change 50
50
"globby" : " ^14.0.0" ,
51
51
"lerna-changelog" : " ^2.2.0" ,
52
52
"pnpm-sync-dependencies-meta-injected" : " 0.0.10" ,
53
- "prettier" : " ^3.0.3 " ,
53
+ "prettier" : " ^3.1.0 " ,
54
54
"rimraf" : " ^5.0.5" ,
55
55
"semver" : " ^7.5.4" ,
56
56
"silent-error" : " ^1.1.1" ,
Original file line number Diff line number Diff line change 125
125
"@glimmer/tracking" : " ^1.1.2" ,
126
126
"@warp-drive/internal-config" : " workspace:5.5.0-alpha.11" ,
127
127
"ember-source" : " ~5.4.0" ,
128
- "eslint" : " ^8.53 .0"
128
+ "eslint" : " ^8.54 .0"
129
129
},
130
130
"engines" : {
131
131
"node" : " >= 20.9.0"
Original file line number Diff line number Diff line change @@ -1117,8 +1117,8 @@ export default class JSONAPICache implements Cache {
1117
1117
cached . inflightAttrs && attr in cached . inflightAttrs
1118
1118
? cached . inflightAttrs [ attr ]
1119
1119
: cached . remoteAttrs && attr in cached . remoteAttrs
1120
- ? cached . remoteAttrs [ attr ]
1121
- : undefined ;
1120
+ ? cached . remoteAttrs [ attr ]
1121
+ : undefined ;
1122
1122
if ( existing !== value ) {
1123
1123
cached . localAttrs = cached . localAttrs || ( Object . create ( null ) as Record < string , Value > ) ;
1124
1124
cached . localAttrs [ attr ] = value ;
@@ -1645,8 +1645,8 @@ function patchLocalAttributes(cached: CachedResource): boolean {
1645
1645
inflightAttrs && attr in inflightAttrs
1646
1646
? inflightAttrs [ attr ]
1647
1647
: remoteAttrs && attr in remoteAttrs
1648
- ? remoteAttrs [ attr ]
1649
- : undefined ;
1648
+ ? remoteAttrs [ attr ]
1649
+ : undefined ;
1650
1650
1651
1651
if ( existing === localAttrs [ attr ] ) {
1652
1652
hasAppliedPatch = true ;
Original file line number Diff line number Diff line change @@ -19,10 +19,10 @@ const _fetch: typeof fetch =
19
19
typeof fetch !== 'undefined'
20
20
? fetch
21
21
: 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 ) ;
26
26
27
27
// clones a response in a way that should still
28
28
// allow it to stream
@@ -136,8 +136,8 @@ const Fetch = {
136
136
const errors = Array . isArray ( errorPayload )
137
137
? errorPayload
138
138
: isDict ( errorPayload ) && Array . isArray ( errorPayload . errors )
139
- ? errorPayload . errors
140
- : null ;
139
+ ? errorPayload . errors
140
+ : null ;
141
141
142
142
const msg = `[${ response . status } ] ${ response . statusText ? response . statusText + ' ' : '' } - ${ response . url } ` ;
143
143
You can’t perform that action at this time.
0 commit comments