kizu 5.0.3 → 5.0.4-next.1

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.
Files changed (2) hide show
  1. package/bin/cli.js +2 -0
  2. package/package.json +1 -1
package/bin/cli.js CHANGED
@@ -17,6 +17,8 @@ if (existsSync(builtCliPath)) {
17
17
  // Development mode - try tsx first, fallback to ts-node
18
18
  try {
19
19
  require('tsx/cjs');
20
+ // Let tsx read tsconfig.json automatically
21
+ tsx.register();
20
22
  } catch (error) {
21
23
  try {
22
24
  // Fallback to ts-node if tsx is not available
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kizu",
3
- "version": "5.0.3",
3
+ "version": "5.0.4-next.1",
4
4
  "description": "An easy-to-use, fast, and defensive Typescript/Javascript test runner designed to help you to write simple, readable, and maintainable tests.",
5
5
  "license": "MIT",
6
6
  "main": "./dist/index.js",