Skip to content

Commit

Permalink
webpack: split sqlite3-binding.js out so that it could be override by…
Browse files Browse the repository at this point in the history
… webpack … (#1268)

* Split sqlite3-binding.js out so that it could be override by webpack options.

Co-authored-by: Kewde <kewde@particl.io>
  • Loading branch information
lygstate and kewde committed Mar 13, 2020
1 parent a704bd7 commit fdceaef
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
5 changes: 5 additions & 0 deletions lib/sqlite3-binding.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
var binary = require('node-pre-gyp');
var path = require('path');
var binding_path = binary.find(path.resolve(path.join(__dirname,'../package.json')));
var binding = require(binding_path);
module.exports = exports = binding;
6 changes: 2 additions & 4 deletions lib/sqlite3.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
var binary = require('node-pre-gyp');
var path = require('path');
var binding_path = binary.find(path.resolve(path.join(__dirname,'../package.json')));
var binding = require(binding_path);
var sqlite3 = module.exports = exports = binding;
var sqlite3 = require('./sqlite3-binding.js');
var EventEmitter = require('events').EventEmitter;
module.exports = exports = sqlite3;

function normalizeMethod (fn) {
return function (sql) {
Expand Down

0 comments on commit fdceaef

Please sign in to comment.