@supertape/formatter-progress-bar 5.0.0 → 5.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -8,6 +8,7 @@ import process from 'node:process';
8
8
  global._isCI = isCI;
9
9
 
10
10
  const OK = '👌';
11
+ const WARNING = '⚠️';
11
12
  const YELLOW = '#f9d472';
12
13
 
13
14
  const {red} = chalk;
@@ -201,7 +202,7 @@ function _createProgress({total, color, test}) {
201
202
 
202
203
  function formatSkip(skiped) {
203
204
  const {TERMINAL_EMULATOR} = process.env;
204
- const spaces = /JetBrains/.test(TERMINAL_EMULATOR) ? '' : ' ';
205
+ const spaces = /JetBrains/.test(TERMINAL_EMULATOR) ? '' : ' ';
205
206
 
206
- return `# ⚠️ ${spaces}skip ${skiped}`;
207
+ return `# ${WARNING}${spaces}skip ${skiped}`;
207
208
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@supertape/formatter-progress-bar",
3
- "version": "5.0.0",
3
+ "version": "5.0.2",
4
4
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
5
5
  "description": "📼 Supertape formatter progress bar",
6
6
  "homepage": "http://github.com/coderaiser/supertape",
@@ -23,7 +23,7 @@
23
23
  "wisdom": "madrun wisdom"
24
24
  },
25
25
  "dependencies": {
26
- "chalk": "^4.1.0",
26
+ "chalk": "^5.3.0",
27
27
  "ci-info": "^4.0.0",
28
28
  "cli-progress": "^3.8.2",
29
29
  "fullstore": "^3.0.0",