Skip to content

Commit bbf4ed9

Browse files
prettier
Signed-off-by: Muhammad Awawdi <[email protected]>
1 parent bc1c5c3 commit bbf4ed9

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

node/npm/glide/glide-rs.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ function loadNativeBinding() {
2626
nativeBinding = require("@scope/glide-rs-linux-x64");
2727
break;
2828
}
29-
29+
3030
break;
3131
case "arm64":
3232
switch (familySync()) {

node/npm/glide/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0
33
*/
44

5-
import glideRs from './glide-rs';
5+
import glideRs from "./glide-rs";
66

77
let globalObject = global as unknown;
88

node/rust-client/package.json

+6-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,12 @@
33
"version": "${PACKAGE_VERSION}",
44
"description": "Valkey client for ${PLATFORM_NAME}",
55
"main": "index.js",
6-
"os": ["${NODE_OS}"],
7-
"cpu": ["${NODE_ARCH}"],
6+
"os": [
7+
"${NODE_OS}"
8+
],
9+
"cpu": [
10+
"${NODE_ARCH}"
11+
],
812
"license": "Apache-2.0",
913
"files": [
1014
"index.d.ts",

node/src/Commands.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@
33
*/
44

55
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";
710

811
import {
912
BaseClient, // eslint-disable-line @typescript-eslint/no-unused-vars

0 commit comments

Comments
 (0)