@orchestrator-ui/jest-config 1.3.0 → 1.4.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/.turbo/turbo-build.log +3 -3
- package/CHANGELOG.md +17 -11
- package/package.json +2 -2
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
|
|
2
|
-
> @orchestrator-ui/jest-config@1.
|
|
2
|
+
> @orchestrator-ui/jest-config@1.4.0 build
|
|
3
3
|
> tsup jest-base.config.js --format esm
|
|
4
4
|
|
|
5
5
|
[34mCLI[39m Building entry: jest-base.config.js
|
|
6
|
-
[34mCLI[39m tsup v8.0
|
|
6
|
+
[34mCLI[39m tsup v8.3.0
|
|
7
7
|
[34mCLI[39m Target: node16
|
|
8
8
|
[34mESM[39m Build start
|
|
9
9
|
[32mESM[39m [1mdist/jest-base.config.mjs [22m[32m854.00 B[39m
|
|
10
|
-
[32mESM[39m ⚡️ Build success in
|
|
10
|
+
[32mESM[39m ⚡️ Build success in 17ms
|
package/CHANGELOG.md
CHANGED
|
@@ -1,67 +1,73 @@
|
|
|
1
1
|
# @orchestrator-ui/jest-config
|
|
2
2
|
|
|
3
|
+
## 1.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 846a884: Updates npm dependency minor versions
|
|
8
|
+
|
|
3
9
|
## 1.3.0
|
|
4
10
|
|
|
5
11
|
### Minor Changes
|
|
6
12
|
|
|
7
|
-
-
|
|
13
|
+
- 80f18ae: Fixes npm audit messages
|
|
8
14
|
|
|
9
15
|
## 1.2.1
|
|
10
16
|
|
|
11
17
|
### Patch Changes
|
|
12
18
|
|
|
13
|
-
-
|
|
19
|
+
- 09f3e09: Fixes markdown in README files
|
|
14
20
|
|
|
15
21
|
## 1.2.0
|
|
16
22
|
|
|
17
23
|
### Minor Changes
|
|
18
24
|
|
|
19
|
-
-
|
|
25
|
+
- c122786: Adds README files to be displayed on NPM. Adds Apache 2.0 license.
|
|
20
26
|
|
|
21
27
|
## 1.1.0
|
|
22
28
|
|
|
23
29
|
### Minor Changes
|
|
24
30
|
|
|
25
|
-
-
|
|
31
|
+
- 00fe7c1: Adds jest-environment-jsdom package
|
|
26
32
|
|
|
27
33
|
## 1.0.0
|
|
28
34
|
|
|
29
35
|
### Major Changes
|
|
30
36
|
|
|
31
|
-
-
|
|
37
|
+
- 507399b: R1 Release
|
|
32
38
|
|
|
33
39
|
## 0.2.0
|
|
34
40
|
|
|
35
41
|
### Minor Changes
|
|
36
42
|
|
|
37
|
-
-
|
|
43
|
+
- c8c6e10: Update npm dependency versions
|
|
38
44
|
|
|
39
45
|
## 0.1.0
|
|
40
46
|
|
|
41
47
|
### Minor Changes
|
|
42
48
|
|
|
43
|
-
-
|
|
49
|
+
- ef5eace: Updates all major dependencies including Typescript to version 5 and NextJS to version 14
|
|
44
50
|
|
|
45
51
|
## 0.0.4
|
|
46
52
|
|
|
47
53
|
### Patch Changes
|
|
48
54
|
|
|
49
|
-
-
|
|
55
|
+
- 6597ac1: Test release after adding absolute imports (issue 414)
|
|
50
56
|
|
|
51
57
|
## 0.0.3
|
|
52
58
|
|
|
53
59
|
### Patch Changes
|
|
54
60
|
|
|
55
|
-
-
|
|
61
|
+
- 6d680f6: Test release before adding absolute imports (issue 414)
|
|
56
62
|
|
|
57
63
|
## 0.0.2
|
|
58
64
|
|
|
59
65
|
### Patch Changes
|
|
60
66
|
|
|
61
|
-
-
|
|
67
|
+
- c780503: Initial release
|
|
62
68
|
|
|
63
69
|
## 0.0.1
|
|
64
70
|
|
|
65
71
|
### Patch Changes
|
|
66
72
|
|
|
67
|
-
-
|
|
73
|
+
- 0cef169: Splitted WFO in separate packages
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orchestrator-ui/jest-config",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"main": "./dist/",
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@testing-library/jest-dom": "^6.1.5",
|
|
32
|
-
"@testing-library/react": "^
|
|
32
|
+
"@testing-library/react": "^16.0.1",
|
|
33
33
|
"@testing-library/user-event": "^14.5.2",
|
|
34
34
|
"@types/jest": "^29.5.11",
|
|
35
35
|
"babel-jest": "^29.7.0",
|