Skip to content

Commit 596a105

Browse files
committedMar 25, 2022
Update dependencies
1 parent b9fd7f2 commit 596a105

File tree

2 files changed

+15
-14
lines changed

2 files changed

+15
-14
lines changed
 

‎index.js

+10-9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import process from 'node:process';
12
import escapeStringRegexp from 'escape-string-regexp';
23
import isUnicodeSupported from 'is-unicode-supported';
34

@@ -195,21 +196,21 @@ const common = {
195196
lineUpDownLeftDoubleRightDouble: '╪',
196197
lineCross: '╳',
197198
lineBackslash: '╲',
198-
lineSlash: '╱'
199+
lineSlash: '╱',
199200
};
200201

201202
export const mainSymbols = {
202203
...common,
203204
// The main symbols for those do not look that good on Ubuntu.
204205
...(
205-
platform === 'linux' ?
206-
{
206+
platform === 'linux'
207+
? {
207208
circleQuestionMark: '?⃝',
208-
questionMarkPrefix: '?⃝'
209-
} :
210-
{
209+
questionMarkPrefix: '?⃝',
210+
}
211+
: {
211212
circleQuestionMark: '?',
212-
questionMarkPrefix: '?'
213+
questionMarkPrefix: '?',
213214
}
214215
),
215216
tick: '✔',
@@ -245,7 +246,7 @@ export const mainSymbols = {
245246
nodejs: '⬢',
246247
oneSeventh: '⅐',
247248
oneNinth: '⅑',
248-
oneTenth: '⅒'
249+
oneTenth: '⅒',
249250
};
250251

251252
export const fallbackSymbols = {
@@ -285,7 +286,7 @@ export const fallbackSymbols = {
285286
nodejs: '♦',
286287
oneSeventh: '1/7',
287288
oneNinth: '1/9',
288-
oneTenth: '1/10'
289+
oneTenth: '1/10',
289290
};
290291

291292
const shouldUseMain = isUnicodeSupported();

‎package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@
3636
],
3737
"dependencies": {
3838
"escape-string-regexp": "^5.0.0",
39-
"is-unicode-supported": "^1.0.0"
39+
"is-unicode-supported": "^1.2.0"
4040
},
4141
"devDependencies": {
42-
"ava": "^3.15.0",
43-
"tsd": "^0.17.0",
44-
"typescript": "^4.3.5",
45-
"xo": "^0.40.3"
42+
"ava": "^4.1.0",
43+
"tsd": "^0.19.1",
44+
"typescript": "^4.6.3",
45+
"xo": "^0.48.0"
4646
}
4747
}

0 commit comments

Comments
 (0)
Please sign in to comment.