tape-six 1.4.4 → 1.4.5

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/README.md CHANGED
@@ -380,6 +380,7 @@ Test output can be controlled by flags. See [Supported flags](https://github.com
380
380
 
381
381
  The most recent releases:
382
382
 
383
+ - 1.4.5 _Internal: added flags support for custom test runners._
383
384
  - 1.4.4 _Refreshed the lock file._
384
385
  - 1.4.3 _Updated dev dependencies + a minor bugfix._
385
386
  - 1.4.2 _Improved documentation._
package/bin/tape6-bun.js CHANGED
@@ -76,6 +76,7 @@ const config = () => {
76
76
  name = optionNames[option];
77
77
  if (typeof name == 'string') options[name] = option !== flags[i];
78
78
  }
79
+ options.flags = flags;
79
80
 
80
81
  if (!parIsSet) {
81
82
  parallel = Bun.env.TAPE6_PAR || parallel;
package/bin/tape6-deno.js CHANGED
@@ -76,6 +76,7 @@ const config = () => {
76
76
  name = optionNames[option];
77
77
  if (typeof name == 'string') options[name] = option !== flags[i];
78
78
  }
79
+ options.flags = flags;
79
80
 
80
81
  if (!parIsSet) {
81
82
  parallel = Deno.env.get('TAPE6_PAR') || parallel;
package/bin/tape6-node.js CHANGED
@@ -77,6 +77,7 @@ const config = () => {
77
77
  name = optionNames[option];
78
78
  if (typeof name == 'string') options[name] = option !== flags[i];
79
79
  }
80
+ options.flags = flags;
80
81
 
81
82
  if (!parIsSet) {
82
83
  parallel = process.env.TAPE6_PAR || parallel;
package/index.js CHANGED
@@ -55,6 +55,7 @@ const init = async () => {
55
55
  name = optionNames[option];
56
56
  if (typeof name == 'string') options[name] = option !== flags[i];
57
57
  }
58
+ options.flags = flags;
58
59
 
59
60
  let originalConsole = null;
60
61
  if (!options.dontCaptureConsole && (isNode || isBun || isDeno)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tape-six",
3
- "version": "1.4.4",
3
+ "version": "1.4.5",
4
4
  "description": "TAP the test harness for the modern JavaScript (ES6).",
5
5
  "type": "module",
6
6
  "main": "index.js",