Skip to content

Commit 5c907a4

Browse files
committed
Inline x3-linkedlist
1 parent a535d89 commit 5c907a4

File tree

6 files changed

+758
-5
lines changed

6 files changed

+758
-5
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -364,3 +364,6 @@ to support larger numbers of concurrent transactions on the server side.
364364

365365
The Apache License, Version 2.0. For more information, see the accompanying
366366
LICENSE file.
367+
368+
Includes code from [x3-linkedlist](https://github.com/x3cion/x3-linkedlist)
369+
used under the MIT license.

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,7 @@
7676
"prepare": "npm run build && node -e 'require(\".\");' && node -e 'import(\"./build/esm/index.js\")'"
7777
},
7878
"dependencies": {
79-
"@types/node": "^20.11.26",
80-
"x3-linkedlist": "1.2.0"
79+
"@types/node": "^20.11.26"
8180
},
8281
"devDependencies": {
8382
"@tsconfig/node20": "^20.1.4",

src/connection.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
* @packageDocumentation
1010
*/
11-
import { LinkedList } from "x3-linkedlist";
11+
import { LinkedList } from "./lib/linkedList.js";
1212
import { Database } from "./database.js";
1313
import {
1414
ArangoError,

src/cursor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
* @packageDocumentation
99
*/
10-
import { LinkedList } from "x3-linkedlist";
10+
import { LinkedList } from "./lib/linkedList.js";
1111
import { Database } from "./database.js";
1212

1313
/**

0 commit comments

Comments
 (0)