@graffy/server 0.15.11 → 0.15.13-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.cjs +0 -1
- package/index.mjs +0 -1
- package/package.json +2 -2
package/index.cjs
CHANGED
|
@@ -88,7 +88,6 @@ data: ${e.message}
|
|
|
88
88
|
const payload = common.deserialize(Buffer.concat(chunks).toString());
|
|
89
89
|
const value = await store.call(op, payload, options);
|
|
90
90
|
res.writeHead(200);
|
|
91
|
-
console.log("Responding with", value);
|
|
92
91
|
res.end(common.serialize(value));
|
|
93
92
|
} catch (e) {
|
|
94
93
|
res.writeHead(400);
|
package/index.mjs
CHANGED
|
@@ -79,7 +79,6 @@ data: ${e.message}
|
|
|
79
79
|
const payload = deserialize(Buffer.concat(chunks).toString());
|
|
80
80
|
const value = await store.call(op, payload, options);
|
|
81
81
|
res.writeHead(200);
|
|
82
|
-
console.log("Responding with", value);
|
|
83
82
|
res.end(serialize(value));
|
|
84
83
|
} catch (e) {
|
|
85
84
|
res.writeHead(400);
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@graffy/server",
|
|
3
3
|
"description": "Node.js library for building an API for a Graffy store.",
|
|
4
4
|
"author": "aravind (https://github.com/aravindet)",
|
|
5
|
-
"version": "0.15.
|
|
5
|
+
"version": "0.15.13-alpha.1",
|
|
6
6
|
"main": "./index.cjs",
|
|
7
7
|
"exports": {
|
|
8
8
|
"import": "./index.mjs",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"license": "Apache-2.0",
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"ws": "^7.0.0",
|
|
20
|
-
"@graffy/common": "0.15.
|
|
20
|
+
"@graffy/common": "0.15.13-alpha.1",
|
|
21
21
|
"debug": "^4.3.2"
|
|
22
22
|
}
|
|
23
23
|
}
|