Skip to content

Commit 2dbb9ea

Browse files
authored
Merge branch 'master' into chore/upgrade-sqlite3
2 parents ad62fba + b920352 commit 2dbb9ea

File tree

2 files changed

+18
-14
lines changed

2 files changed

+18
-14
lines changed

cli/output-table.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module.exports = function(data, options) {
2-
var Table = require('cli-table2');
2+
var Table = require('cli-table3');
33
var log = require("../log");
44
var colNum = process.stdout.columns - 10;
55
if (isNaN(colNum) || colNum < 0) {

package.json

+17-13
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "notebox",
33
"description": "powerful command line based note taking app.",
4-
"version": "1.1.6",
5-
"author":"Keyang Xiang <[email protected]>",
6-
"bugs":"https://github.com/Keyang/notebox/issues",
7-
"homepage":"https://github.com/Keyang/notebox",
4+
"version": "1.1.8",
5+
"author": "Keyang Xiang <[email protected]>",
6+
"bugs": "https://github.com/Keyang/notebox/issues",
7+
"homepage": "https://github.com/Keyang/notebox",
88
"keywords": [
99
"note taking",
1010
"note",
@@ -18,20 +18,24 @@
1818
"type": "git",
1919
"url": "https://github.com/Keyang/notebox.git"
2020
},
21-
"contributors": [{
22-
"name": "Keyang Xiang",
23-
"email": "[email protected]"
24-
}],
25-
"license": [{
26-
"type": "MIT",
27-
"url": "https://github.com/Keyang/notebox/blob/master/LICENSE"
28-
}],
21+
"contributors": [
22+
{
23+
"name": "Keyang Xiang",
24+
"email": "[email protected]"
25+
}
26+
],
27+
"license": [
28+
{
29+
"type": "MIT",
30+
"url": "https://github.com/Keyang/notebox/blob/master/LICENSE"
31+
}
32+
],
2933
"engines": {
3034
"node": ">=0.10"
3135
},
3236
"dependencies": {
3337
"async": "^1.3.0",
34-
"cli-table2": "^0.1.7",
38+
"cli-table3": "^0.5.0",
3539
"colors": "^1.1.2",
3640
"commander": "^2.8.1",
3741
"readline-sync": "^1.2.19",

0 commit comments

Comments
 (0)