File tree 4 files changed +12
-5
lines changed
4 files changed +12
-5
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ function loadNativeBinding() {
26
26
nativeBinding = require ( "@scope/glide-rs-linux-x64" ) ;
27
27
break ;
28
28
}
29
-
29
+
30
30
break ;
31
31
case "arm64" :
32
32
switch ( familySync ( ) ) {
Original file line number Diff line number Diff line change 2
2
* Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0
3
3
*/
4
4
5
- import glideRs from ' ./glide-rs' ;
5
+ import glideRs from " ./glide-rs" ;
6
6
7
7
let globalObject = global as unknown ;
8
8
Original file line number Diff line number Diff line change 3
3
"version" : " ${PACKAGE_VERSION}" ,
4
4
"description" : " Valkey client for ${PLATFORM_NAME}" ,
5
5
"main" : " index.js" ,
6
- "os" : [" ${NODE_OS}" ],
7
- "cpu" : [" ${NODE_ARCH}" ],
6
+ "os" : [
7
+ " ${NODE_OS}"
8
+ ],
9
+ "cpu" : [
10
+ " ${NODE_ARCH}"
11
+ ],
8
12
"license" : " Apache-2.0" ,
9
13
"files" : [
10
14
" index.d.ts" ,
Original file line number Diff line number Diff line change 3
3
*/
4
4
5
5
import Long from "long" ;
6
- import { createLeakedStringVec , MAX_REQUEST_ARGS_LEN } from "../npm/glide/glide-rs" ;
6
+ import {
7
+ createLeakedStringVec ,
8
+ MAX_REQUEST_ARGS_LEN ,
9
+ } from "../npm/glide/glide-rs" ;
7
10
8
11
import {
9
12
BaseClient , // eslint-disable-line @typescript-eslint/no-unused-vars
You can’t perform that action at this time.
0 commit comments