Skip to content

Commit

Permalink
🎨 Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
nuintun committed Mar 14, 2018
1 parent 328de0b commit 54a77dd
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# 4.0.7 / 2018/01/15
# 4.0.8 / 2018/03/14
- Clean ```package.json```
- Use ```require.resolve``` instead ```__dirname```
# 4.0.7 / 2018/01/15
- Update deps
# 4.0.6 / 2017/12/28
Expand Down
2 changes: 1 addition & 1 deletion lib/adodb.js

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

2 changes: 1 addition & 1 deletion lib/proxy.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const spawn = require('child_process').spawn;

// Variable declaration
const x64 = arch() === 'x64';
const adodb = path.join(__dirname, 'adodb.js');
const adodb = require.resolve('./adodb.js');
const sysroot = process.env['systemroot'] || process.env['windir'];
const cscript = path.join(sysroot, x64 ? 'SysWOW64' : 'System32', 'cscript.exe');

Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "node-adodb",
"version": "4.0.7",
"version": "4.0.8",
"main": "index.js",
"license": "MIT",
"keywords": ["sql", "adodb", "access", "database", "node-adodb", "microsoft adodb"],
Expand Down Expand Up @@ -28,9 +28,9 @@
},
"devDependencies": {
"chai": "^4.1.2",
"rollup": "^0.54.0",
"rollup": "^0.56.5",
"holding": "^2.0.1",
"uglify-es": "^3.3.7"
"uglify-es": "^3.3.9"
},
"scripts": {
"test": "mocha --timeout 6000 --check-leaks --reporter spec --bail --exit",
Expand Down

0 comments on commit 54a77dd

Please sign in to comment.