Skip to content

Commit

Permalink
Inline x3-linkedlist
Browse files Browse the repository at this point in the history
  • Loading branch information
pluma4345 committed May 15, 2024
1 parent a535d89 commit 5c907a4
Show file tree
Hide file tree
Showing 6 changed files with 758 additions and 5 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -364,3 +364,6 @@ to support larger numbers of concurrent transactions on the server side.

The Apache License, Version 2.0. For more information, see the accompanying
LICENSE file.

Includes code from [x3-linkedlist](https://github.com/x3cion/x3-linkedlist)
used under the MIT license.
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,7 @@
"prepare": "npm run build && node -e 'require(\".\");' && node -e 'import(\"./build/esm/index.js\")'"
},
"dependencies": {
"@types/node": "^20.11.26",
"x3-linkedlist": "1.2.0"
"@types/node": "^20.11.26"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
Expand Down
2 changes: 1 addition & 1 deletion src/connection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
*
* @packageDocumentation
*/
import { LinkedList } from "x3-linkedlist";
import { LinkedList } from "./lib/linkedList.js";
import { Database } from "./database.js";
import {
ArangoError,
Expand Down
2 changes: 1 addition & 1 deletion src/cursor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*
* @packageDocumentation
*/
import { LinkedList } from "x3-linkedlist";
import { LinkedList } from "./lib/linkedList.js";
import { Database } from "./database.js";

/**
Expand Down

0 comments on commit 5c907a4

Please sign in to comment.