File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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" ,
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}
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import path from "path";
1111import chalk from "chalk" ;
1212import checkUpdate from "update-check" ;
1313import pkg from "../package.json" ;
14- import boxen , { BorderStyle } from "boxen" ;
14+ import boxen from "boxen" ;
1515import { CLI , Shim } from "clime" ;
1616import {
1717 configExists ,
@@ -22,6 +22,7 @@ import {
2222 isDebug ,
2323 isDev
2424} from "./utils/Utils" ;
25+ import { BorderStyle } from "./utils/Types" ;
2526
2627async function main ( ) : Promise < void > {
2728 if ( ! configExists ( ) ) {
Original file line number Diff line number Diff 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+ }
You can’t perform that action at this time.
0 commit comments