Skip to content

Commit 20ed108

Browse files
committed
Update dependencies
1 parent 5c4cb66 commit 20ed108

4 files changed

Lines changed: 387 additions & 269 deletions

File tree

package.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mdr-cli",
3-
"version": "1.4.0",
3+
"version": "1.4.1",
44
"description": "cli to interact with the mijndomeinreseller api",
55
"keywords": [
66
"cli",
@@ -44,28 +44,28 @@
4444
},
4545
"dependencies": {
4646
"@iarna/toml": "^2.2.5",
47-
"axios": "^0.21.0",
48-
"boxen": "^4.2.0",
47+
"axios": "^0.21.1",
48+
"boxen": "^5.0.0",
4949
"chalk": "^4.1.0",
5050
"clime": "^0.5.14",
5151
"is-base64": "^1.1.0",
52-
"ora": "^5.1.0",
53-
"semver": "^7.3.2",
52+
"ora": "^5.2.0",
53+
"semver": "^7.3.4",
5454
"styled-cli-table": "^1.3.0",
5555
"update-check": "^1.5.4",
5656
"urlcat": "^2.0.4",
5757
"winston": "^3.3.3"
5858
},
5959
"devDependencies": {
6060
"@types/is-base64": "^1.1.0",
61-
"@types/node": "^14.14.10",
61+
"@types/node": "^14.14.20",
6262
"@types/semver": "^7.3.4",
63-
"@typescript-eslint/eslint-plugin": "^4.8.2",
64-
"@typescript-eslint/parser": "^4.8.2",
65-
"cross-env": "^7.0.2",
66-
"eslint": "^7.14.0",
67-
"gts": "^3.0.2",
68-
"ts-node": "^9.0.0",
69-
"typescript": "^4.1.2"
63+
"@typescript-eslint/eslint-plugin": "^4.12.0",
64+
"@typescript-eslint/parser": "^4.12.0",
65+
"cross-env": "^7.0.3",
66+
"eslint": "^7.17.0",
67+
"gts": "^3.0.3",
68+
"ts-node": "^9.1.1",
69+
"typescript": "^4.1.3"
7070
}
7171
}

src/cli.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import path from "path";
1111
import chalk from "chalk";
1212
import checkUpdate from "update-check";
1313
import pkg from "../package.json";
14-
import boxen, { BorderStyle } from "boxen";
14+
import boxen from "boxen";
1515
import { CLI, Shim } from "clime";
1616
import {
1717
configExists,
@@ -22,6 +22,7 @@ import {
2222
isDebug,
2323
isDev
2424
} from "./utils/Utils";
25+
import { BorderStyle } from "./utils/Types";
2526

2627
async function main(): Promise<void> {
2728
if (!configExists()) {

src/utils/Types.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,13 @@ export interface Template {
3737
template_id: string;
3838
template_name: string;
3939
}
40+
41+
export enum BorderStyle {
42+
Single = "single",
43+
Double = "double",
44+
Round = "round",
45+
Bold = "bold",
46+
SingleDouble = "singleDouble",
47+
DoubleSingle = "doubleSingle",
48+
Classic = "classic"
49+
}

0 commit comments

Comments
 (0)