tape-six-proc 1.2.7 → 1.2.8
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/LICENSE +1 -1
- package/README.md +1 -0
- package/bin/tape6-proc-node.js +5 -3
- package/package.json +2 -2
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -88,6 +88,7 @@ LLM-friendly documentation is available:
|
|
|
88
88
|
|
|
89
89
|
The most recent releases:
|
|
90
90
|
|
|
91
|
+
- 1.2.8 _Fixed Bun stdout flush bug. Added GitHub Actions CI. Updated dependencies._
|
|
91
92
|
- 1.2.7 _Added `--help` and `--version` flags. Updated dependencies._
|
|
92
93
|
- 1.2.6 _Updated dependencies. Added AI agent rule files. Improved workflows._
|
|
93
94
|
- 1.2.5 _Synchronized with `tape-six` 1.7.6+. Simplified CLI via shared config utilities. Added `--info` flag. Fixed Deno stdout flush._
|
package/bin/tape6-proc-node.js
CHANGED
|
@@ -90,13 +90,15 @@ const main = async () => {
|
|
|
90
90
|
if (options.optionFlags['--info'] === '') {
|
|
91
91
|
showInfo(options, files);
|
|
92
92
|
await new Promise(r => process.stdout.write('', r));
|
|
93
|
-
process.
|
|
93
|
+
process.exitCode = 0;
|
|
94
|
+
return;
|
|
94
95
|
}
|
|
95
96
|
|
|
96
97
|
if (!files.length) {
|
|
97
98
|
console.log('No files found.');
|
|
98
99
|
await new Promise(r => process.stdout.write('', r));
|
|
99
|
-
process.
|
|
100
|
+
process.exitCode = 1;
|
|
101
|
+
return;
|
|
100
102
|
}
|
|
101
103
|
|
|
102
104
|
const reporter = getReporter(),
|
|
@@ -118,7 +120,7 @@ const main = async () => {
|
|
|
118
120
|
});
|
|
119
121
|
|
|
120
122
|
await new Promise(r => process.stdout.write('', r));
|
|
121
|
-
process.
|
|
123
|
+
process.exitCode = hasFailed ? 1 : 0;
|
|
122
124
|
};
|
|
123
125
|
|
|
124
126
|
main().catch(error => console.error('ERROR:', error));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tape-six-proc",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.8",
|
|
4
4
|
"description": "Process-isolated test runner for tape-six. Runs each test file in its own subprocess. Works with Node, Deno, and Bun. Supports TypeScript without transpilation.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
],
|
|
58
58
|
"dependencies": {
|
|
59
59
|
"dollar-shell": "^1.1.13",
|
|
60
|
-
"tape-six": "^1.7.
|
|
60
|
+
"tape-six": "^1.7.13"
|
|
61
61
|
},
|
|
62
62
|
"tape6": {
|
|
63
63
|
"tests": [
|