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 CHANGED
@@ -1,4 +1,4 @@
1
- Copyright 2005-2024 Eugene Lazutkin
1
+ Copyright 2005-2026 Eugene Lazutkin
2
2
 
3
3
  Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
4
4
 
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._
@@ -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.exit(0);
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.exit(1);
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.exit(hasFailed ? 1 : 0);
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.7",
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.12"
60
+ "tape-six": "^1.7.13"
61
61
  },
62
62
  "tape6": {
63
63
  "tests": [