Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Kevel/lmdb 0.9.29 #1

Open
wants to merge 16 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 14 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
6 changes: 3 additions & 3 deletions binding.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"target_name": "node-lmdb",
"win_delay_load_hook": "false",
"sources": [
"dependencies/lmdb/libraries/liblmdb/mdb.c",
"dependencies/lmdb/libraries/liblmdb/midl.c",
"libraries/liblmdb/mdb.c",
"libraries/liblmdb/midl.c",
"src/node-lmdb.cpp",
"src/env.cpp",
"src/misc.cpp",
Expand All @@ -22,7 +22,7 @@
],
"include_dirs": [
"<!(node -e \"require('nan')\")",
"dependencies/lmdb/libraries/liblmdb"
"libraries/liblmdb"
],
"conditions": [
["OS=='linux'", {
Expand Down
40 changes: 0 additions & 40 deletions dependencies/lmdb/libraries/liblmdb/mdb_drop.1

This file was deleted.

135 changes: 0 additions & 135 deletions dependencies/lmdb/libraries/liblmdb/mdb_drop.c

This file was deleted.

7 changes: 6 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
'use strict';

module.exports = require('node-gyp-build')(__dirname);
const store = require('./store.js')

module.exports = {
...require('node-gyp-build')(__dirname),
...store
}
Loading