tstyche 5.0.0-rc.0 → 5.0.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/README.md CHANGED
@@ -65,7 +65,7 @@ test("toMilliseconds", () => {
65
65
 
66
66
  Here is the list of all matchers:
67
67
 
68
- - `.toBe()`, `.toBeAssignableTo()`, `.toBeAssignableFrom()` compare types or types of expression,
68
+ - `.toBe()`, `.toBeAssignableFrom()`, `.toBeAssignableTo()` compare types or types of expression,
69
69
  - `.toAcceptProps()` checks the type of JSX component props,
70
70
  - `.toBeApplicable` ensures that the decorator function can be applied,
71
71
  - `.toBeCallableWith()` checks whether a function is callable with the given arguments,
@@ -77,7 +77,7 @@ Here is the list of all matchers:
77
77
  The `tstyche` command is the heart of TSTyche. For example, it can select test files by path, filter tests by name and to run the tests against specific versions of TypeScript:
78
78
 
79
79
  ```shell
80
- tstyche query-params --only multiple --target '>=5.0 <5.3'
80
+ tstyche query-params --only multiple --target '>=5.6'
81
81
  ```
82
82
 
83
83
  This simple! (And it has watch mode too.)
package/build/tstyche.js CHANGED
@@ -5477,7 +5477,7 @@ class FileRunner {
5477
5477
  class Runner {
5478
5478
  #eventEmitter = new EventEmitter();
5479
5479
  #resolvedConfig;
5480
- static version = "5.0.0-rc.0";
5480
+ static version = "5.0.0";
5481
5481
  constructor(resolvedConfig) {
5482
5482
  this.#resolvedConfig = resolvedConfig;
5483
5483
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tstyche",
3
- "version": "5.0.0-rc.0",
3
+ "version": "5.0.0",
4
4
  "description": "Everything You Need for Type Testing.",
5
5
  "keywords": [
6
6
  "typescript",