Skip to content

Commit

Permalink
⬆️ Bump dev deps
Browse files Browse the repository at this point in the history
  • Loading branch information
nuintun committed Jan 7, 2019
1 parent 82a8ccc commit 880aa3d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# 5.0.1 / 2019/01/07
- Bump dev deps

# 5.0.0 / 2018/11/20

- Add `ADODB.PATH` configrue
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "node-adodb",
"version": "5.0.0",
"version": "5.0.1",
"main": "index.js",
"license": "MIT",
"keywords": [
Expand Down Expand Up @@ -32,14 +32,14 @@
},
"dependencies": {
"arch": "^2.1.1",
"debug": "^4.1.0"
"debug": "^4.1.1"
},
"devDependencies": {
"chai": "^4.2.0",
"rollup": "^0.67.4",
"rollup": "^1.0.2",
"terser": "^3.14.1",
"holding": "^3.1.0",
"fs-extra": "^7.0.1",
"terser": "^3.11.0"
"fs-extra": "^7.0.1"
},
"scripts": {
"prepublishOnly": "node rollup.js",
Expand Down
3 changes: 2 additions & 1 deletion rollup.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ async function build(inputOptions, outputOptions) {
await fs.remove(outputOptions.file);

const bundle = await rollup.rollup(inputOptions);
const result = await bundle.generate(outputOptions);
const { output } = await bundle.generate(outputOptions);
const [result] = output;

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

0 comments on commit 880aa3d

Please sign in to comment.