Skip to content

Commit 0e96acd

Browse files
committedJul 28, 2023
Require Node.js 16
1 parent d802c38 commit 0e96acd

File tree

5 files changed

+55
-49
lines changed

5 files changed

+55
-49
lines changed
 

‎.github/workflows/main.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,12 @@ jobs:
1010
fail-fast: false
1111
matrix:
1212
node-version:
13+
- 20
14+
- 18
1315
- 16
1416
steps:
15-
- uses: actions/checkout@v2
16-
- uses: actions/setup-node@v2
17+
- uses: actions/checkout@v3
18+
- uses: actions/setup-node@v3
1719
with:
1820
node-version: ${{ matrix.node-version }}
1921
- run: npm install

‎index.d.ts

+10-9
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import {SpinnerName} from 'cli-spinners';
1+
import {type SpinnerName} from 'cli-spinners';
22

3-
export interface Spinner {
3+
export type Spinner = {
44
readonly interval?: number;
55
readonly frames: string[];
6-
}
6+
};
77

88
export type Color =
99
| 'black'
@@ -20,7 +20,7 @@ export type PrefixTextGenerator = () => string;
2020

2121
export type SuffixTextGenerator = () => string;
2222

23-
export interface Options {
23+
export type Options = {
2424
/**
2525
Text to display after the spinner.
2626
*/
@@ -114,9 +114,9 @@ export interface Options {
114114
@default true
115115
*/
116116
readonly discardStdin?: boolean;
117-
}
117+
};
118118

119-
export interface PersistOptions {
119+
export type PersistOptions = {
120120
/**
121121
Symbol to replace the spinner with.
122122
@@ -144,9 +144,9 @@ export interface PersistOptions {
144144
Default: Current `suffixText`.
145145
*/
146146
readonly suffixText?: string | SuffixTextGenerator;
147-
}
147+
};
148148

149-
export interface PromiseOptions<T> extends Options {
149+
export type PromiseOptions<T> = {
150150
/**
151151
The new text of the spinner when the promise is resolved.
152152
@@ -160,8 +160,9 @@ export interface PromiseOptions<T> extends Options {
160160
Keeps the existing text if `undefined`.
161161
*/
162162
failText?: string | ((error: Error) => string) | undefined;
163-
}
163+
} & Options;
164164

165+
// eslint-disable-next-line @typescript-eslint/consistent-type-definitions
165166
export interface Ora {
166167
/**
167168
Change the text after the spinner.

‎index.js

+25-26
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import cliCursor from 'cli-cursor';
44
import cliSpinners from 'cli-spinners';
55
import logSymbols from 'log-symbols';
66
import stripAnsi from 'strip-ansi';
7-
import wcwidth from 'wcwidth';
7+
import stringWidth from 'string-width';
88
import isInteractive from 'is-interactive';
99
import isUnicodeSupported from 'is-unicode-supported';
1010
import stdinDiscarder from 'stdin-discarder';
@@ -98,11 +98,11 @@ class Ora {
9898
}
9999

100100
this.#indent = indent;
101-
this.updateLineCount();
101+
this.#updateLineCount();
102102
}
103103

104104
get interval() {
105-
return this.#initialInterval || this.#spinner.interval || 100;
105+
return this.#initialInterval ?? this.#spinner.interval ?? 100;
106106
}
107107

108108
get spinner() {
@@ -135,35 +135,34 @@ class Ora {
135135
return this.#text;
136136
}
137137

138-
set text(value) {
139-
this.#text = value || '';
140-
this.updateLineCount();
138+
set text(value = '') {
139+
this.#text = value;
140+
this.#updateLineCount();
141141
}
142142

143143
get prefixText() {
144144
return this.#prefixText;
145145
}
146146

147-
set prefixText(value) {
148-
this.#prefixText = value || '';
149-
this.updateLineCount();
147+
set prefixText(value = '') {
148+
this.#prefixText = value;
149+
this.#updateLineCount();
150150
}
151151

152152
get suffixText() {
153153
return this.#suffixText;
154154
}
155155

156-
set suffixText(value) {
157-
this.#suffixText = value || '';
158-
this.updateLineCount();
156+
set suffixText(value = '') {
157+
this.#suffixText = value;
158+
this.#updateLineCount();
159159
}
160160

161161
get isSpinning() {
162162
return this.#id !== undefined;
163163
}
164164

165-
// TODO: Use private methods when targeting Node.js 14.
166-
getFullPrefixText(prefixText = this.#prefixText, postfix = ' ') {
165+
#getFullPrefixText(prefixText = this.#prefixText, postfix = ' ') {
167166
if (typeof prefixText === 'string' && prefixText !== '') {
168167
return prefixText + postfix;
169168
}
@@ -175,7 +174,7 @@ class Ora {
175174
return '';
176175
}
177176

178-
getFullSuffixText(suffixText = this.#suffixText, prefix = ' ') {
177+
#getFullSuffixText(suffixText = this.#suffixText, prefix = ' ') {
179178
if (typeof suffixText === 'string' && suffixText !== '') {
180179
return prefix + suffixText;
181180
}
@@ -187,15 +186,15 @@ class Ora {
187186
return '';
188187
}
189188

190-
updateLineCount() {
191-
const columns = this.#stream.columns || 80;
192-
const fullPrefixText = this.getFullPrefixText(this.#prefixText, '-');
193-
const fullSuffixText = this.getFullSuffixText(this.#suffixText, '-');
189+
#updateLineCount() {
190+
const columns = this.#stream.columns ?? 80;
191+
const fullPrefixText = this.#getFullPrefixText(this.#prefixText, '-');
192+
const fullSuffixText = this.#getFullSuffixText(this.#suffixText, '-');
194193
const fullText = ' '.repeat(this.#indent) + fullPrefixText + '--' + this.#text + '--' + fullSuffixText;
195194

196195
this.#lineCount = 0;
197196
for (const line of stripAnsi(fullText).split('\n')) {
198-
this.#lineCount += Math.max(1, Math.ceil(wcwidth(line) / columns));
197+
this.#lineCount += Math.max(1, Math.ceil(stringWidth(line, {countAnsiEscapeCodes: true}) / columns));
199198
}
200199
}
201200

@@ -354,16 +353,16 @@ class Ora {
354353
return this;
355354
}
356355

357-
const prefixText = options.prefixText || this.#prefixText;
358-
const fullPrefixText = this.getFullPrefixText(prefixText, ' ');
356+
const prefixText = options.prefixText ?? this.#prefixText;
357+
const fullPrefixText = this.#getFullPrefixText(prefixText, ' ');
359358

360-
const symbolText = options.symbol || ' ';
359+
const symbolText = options.symbol ?? ' ';
361360

362-
const text = options.text || this.text;
361+
const text = options.text ?? this.text;
363362
const fullText = (typeof text === 'string') ? ' ' + text : '';
364363

365-
const suffixText = options.suffixText !== undefined ? options.suffixText : this.#suffixText;
366-
const fullSuffixText = this.getFullSuffixText(suffixText, ' ');
364+
const suffixText = options.suffixText ?? this.#suffixText;
365+
const fullSuffixText = this.#getFullSuffixText(suffixText, ' ');
367366

368367
const textToWrite = fullPrefixText + symbolText + fullText + fullSuffixText + '\n';
369368

‎index.test-d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import {PassThrough as PassThroughStream} from 'node:stream';
22
import {expectType} from 'tsd';
3-
import cliSpinners from 'cli-spinners';
3+
import type cliSpinners from 'cli-spinners';
44
import ora, {oraPromise, spinners} from './index.js';
55

66
const spinner = ora('Loading unicorns');

‎package.json

+15-11
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"type": "module",
1414
"exports": "./index.js",
1515
"engines": {
16-
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
16+
"node": ">=16"
1717
},
1818
"scripts": {
1919
"test": "xo && ava && tsd"
@@ -39,22 +39,26 @@
3939
"idle"
4040
],
4141
"dependencies": {
42-
"chalk": "^5.0.0",
42+
"chalk": "^5.3.0",
4343
"cli-cursor": "^4.0.0",
44-
"cli-spinners": "^2.6.1",
44+
"cli-spinners": "^2.9.0",
4545
"is-interactive": "^2.0.0",
46-
"is-unicode-supported": "^1.1.0",
46+
"is-unicode-supported": "^1.3.0",
4747
"log-symbols": "^5.1.0",
4848
"stdin-discarder": "^0.1.0",
49-
"strip-ansi": "^7.0.1",
50-
"wcwidth": "^1.0.1"
49+
"strip-ansi": "^7.1.0"
5150
},
5251
"devDependencies": {
53-
"@types/node": "^17.0.18",
54-
"ava": "^4.0.1",
55-
"get-stream": "^6.0.1",
52+
"@types/node": "^20.4.5",
53+
"ava": "^5.3.1",
54+
"get-stream": "^7.0.1",
5655
"transform-tty": "^1.0.11",
57-
"tsd": "^0.19.1",
58-
"xo": "^0.48.0"
56+
"tsd": "^0.28.1",
57+
"xo": "^0.55.0"
58+
},
59+
"xo": {
60+
"rules": {
61+
"@typescript-eslint/no-redundant-type-constituents": "off"
62+
}
5963
}
6064
}

0 commit comments

Comments
 (0)
Please sign in to comment.