@temporal-contract/testing 2.3.1 → 3.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 +3 -3
- package/package.json +12 -9
package/README.md
CHANGED
|
@@ -48,10 +48,10 @@ it("should execute workflow", async ({ clientConnection, workerConnection }) =>
|
|
|
48
48
|
|
|
49
49
|
## Documentation
|
|
50
50
|
|
|
51
|
-
📖 **[Read the full documentation →](https://
|
|
51
|
+
📖 **[Read the full documentation →](https://btravstack.github.io/temporal-contract)**
|
|
52
52
|
|
|
53
|
-
- [API Reference](https://
|
|
54
|
-
- [Examples](https://
|
|
53
|
+
- [API Reference](https://btravstack.github.io/temporal-contract/api/testing)
|
|
54
|
+
- [Examples](https://btravstack.github.io/temporal-contract/examples/)
|
|
55
55
|
|
|
56
56
|
## License
|
|
57
57
|
|
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@temporal-contract/testing",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"description": "Temporal testing utilities",
|
|
5
|
-
"homepage": "https://github.com/
|
|
5
|
+
"homepage": "https://github.com/btravstack/temporal-contract#readme",
|
|
6
6
|
"bugs": {
|
|
7
|
-
"url": "https://github.com/
|
|
7
|
+
"url": "https://github.com/btravstack/temporal-contract/issues"
|
|
8
8
|
},
|
|
9
9
|
"license": "MIT",
|
|
10
10
|
"author": "Benoit TRAVERS <benoit.travers.fr@gmail.com>",
|
|
11
11
|
"repository": {
|
|
12
12
|
"type": "git",
|
|
13
|
-
"url": "https://github.com/
|
|
13
|
+
"url": "https://github.com/btravstack/temporal-contract.git",
|
|
14
14
|
"directory": "packages/testing"
|
|
15
15
|
},
|
|
16
16
|
"files": [
|
|
@@ -29,13 +29,13 @@
|
|
|
29
29
|
}
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@temporalio/client": "1.18.
|
|
33
|
-
"@temporalio/worker": "1.18.
|
|
34
|
-
"testcontainers": "12.0.
|
|
32
|
+
"@temporalio/client": "1.18.1",
|
|
33
|
+
"@temporalio/worker": "1.18.1",
|
|
34
|
+
"testcontainers": "12.0.3"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@types/node": "24.13.
|
|
38
|
-
"tsdown": "0.22.
|
|
37
|
+
"@types/node": "24.13.2",
|
|
38
|
+
"tsdown": "0.22.3",
|
|
39
39
|
"typedoc": "0.28.19",
|
|
40
40
|
"typedoc-plugin-markdown": "4.12.0",
|
|
41
41
|
"typescript": "6.0.3",
|
|
@@ -46,6 +46,9 @@
|
|
|
46
46
|
"peerDependencies": {
|
|
47
47
|
"vitest": "^4"
|
|
48
48
|
},
|
|
49
|
+
"engines": {
|
|
50
|
+
"node": ">=22.19.0"
|
|
51
|
+
},
|
|
49
52
|
"scripts": {
|
|
50
53
|
"build": "tsdown src/global-setup.ts src/extension.ts --format esm --dts --clean",
|
|
51
54
|
"build:docs": "typedoc",
|