Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

strategy:
matrix:
node-version: [14.x]
node-version: [16.x, 18.x, 21.x]

steps:
- uses: actions/checkout@v2
Expand Down
4 changes: 3 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
module.exports = require('./src');
// module.exports = require('./src');
import SBTree from './src/types/SBTree/SBTree.js';
export { SBTree };
171 changes: 62 additions & 109 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sbtree",
"version": "3.1.2",
"version": "4.0.0-beta.1",
"description": "Optimised document store using B+ Tree for fields. Adapters support for In-Memory and FileSystem",
"main": "index.js",
"scripts": {
Expand Down Expand Up @@ -38,9 +38,10 @@
"database",
"big data storage"
],
"type": "module",
"homepage": "https://github.com/Alex-Werner/SBTree#readme",
"devDependencies": {
"chai": "^4.3.10",
"chai": "^5.0.0",
"chance": "^1.1.11",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
Expand All @@ -49,7 +50,7 @@
"nyc": "^15.1.0"
},
"dependencies": {
"fslockjs": "^2.0.2",
"fslockjs": "^3.0.0",
"lodash.clonedeep": "^4.5.0",
"lodash.foreach": "^4.5.0",
"lodash.get": "^4.4.2",
Expand Down
Loading