supertape 13.1.1 → 13.2.0

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.
package/ChangeLog CHANGED
@@ -1,3 +1,14 @@
1
+ 2026.05.08, v13.2.0
2
+
3
+ feature:
4
+ - a607e71 sueprtape: cli: exit code: on FAIL return FAIL, event if there is SKIPPED
5
+
6
+ 2026.05.08, v13.1.2
7
+
8
+ feature:
9
+ - 8eca103 supertape: operator: match: [
10
+ - 290c743 @supertape/operator-react: add
11
+
1
12
  2026.05.06, v13.1.1
2
13
 
3
14
  fix:
package/lib/cli.js CHANGED
@@ -71,12 +71,12 @@ export default async (overrides = {}) => {
71
71
  if (isStop())
72
72
  return exit(WAS_STOP);
73
73
 
74
- if (Number(SUPERTAPE_CHECK_SKIPPED) && skipped)
75
- return exit(SKIPPED);
76
-
77
74
  if (failed)
78
75
  return exit(FAIL);
79
76
 
77
+ if (Number(SUPERTAPE_CHECK_SKIPPED) && skipped)
78
+ return exit(SKIPPED);
79
+
80
80
  if (code === INVALID_OPTION) {
81
81
  stderr.write(`${message}\n`);
82
82
  return exit(code);
@@ -2,7 +2,8 @@ const isStr = (a) => typeof a === 'string';
2
2
  const encode = (a) => a
3
3
  .replaceAll('^', '\\^')
4
4
  .replaceAll(')', '\\)')
5
- .replaceAll('(', '\\(');
5
+ .replaceAll('(', '\\(')
6
+ .replaceAll('[', '\\[');
6
7
 
7
8
  export const maybeRegExp = (a) => {
8
9
  if (!isStr(a))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "supertape",
3
- "version": "13.1.1",
3
+ "version": "13.2.0",
4
4
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
5
5
  "description": "📼 Supertape simplest high speed test runner with superpowers",
6
6
  "homepage": "http://github.com/coderaiser/supertape",