Skip to content

Commit 880aa3d

Browse files
committed
⬆️ Bump dev deps
1 parent 82a8ccc commit 880aa3d

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# 5.0.1 / 2019/01/07
2+
- Bump dev deps
3+
14
# 5.0.0 / 2018/11/20
25

36
- Add `ADODB.PATH` configrue

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "node-adodb",
3-
"version": "5.0.0",
3+
"version": "5.0.1",
44
"main": "index.js",
55
"license": "MIT",
66
"keywords": [
@@ -32,14 +32,14 @@
3232
},
3333
"dependencies": {
3434
"arch": "^2.1.1",
35-
"debug": "^4.1.0"
35+
"debug": "^4.1.1"
3636
},
3737
"devDependencies": {
3838
"chai": "^4.2.0",
39-
"rollup": "^0.67.4",
39+
"rollup": "^1.0.2",
40+
"terser": "^3.14.1",
4041
"holding": "^3.1.0",
41-
"fs-extra": "^7.0.1",
42-
"terser": "^3.11.0"
42+
"fs-extra": "^7.0.1"
4343
},
4444
"scripts": {
4545
"prepublishOnly": "node rollup.js",

rollup.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ async function build(inputOptions, outputOptions) {
2020
await fs.remove(outputOptions.file);
2121

2222
const bundle = await rollup.rollup(inputOptions);
23-
const result = await bundle.generate(outputOptions);
23+
const { output } = await bundle.generate(outputOptions);
24+
const [result] = output;
2425

2526
const file = outputOptions.file;
2627
const minify = terser.minify(result.code, { ie8: true });

0 commit comments

Comments
 (0)