@orchestrator-ui/jest-config 0.0.4 → 0.2.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 +6 -5
- package/CHANGELOG.md +12 -0
- package/package.json +8 -10
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
|
|
2
|
+
> @orchestrator-ui/jest-config@0.2.0 build
|
|
3
|
+
> tsup jest-base.config.js --format esm
|
|
4
|
+
|
|
3
5
|
[34mCLI[39m Building entry: jest-base.config.js
|
|
4
|
-
[34mCLI[39m tsup
|
|
6
|
+
[34mCLI[39m tsup v8.0.2
|
|
5
7
|
[34mCLI[39m Target: node16
|
|
6
8
|
[34mESM[39m Build start
|
|
7
9
|
[32mESM[39m [1mdist/jest-base.config.mjs [22m[32m858.00 B[39m
|
|
8
|
-
[32mESM[39m ⚡️ Build success in
|
|
9
|
-
Done in 0.30s.
|
|
10
|
+
[32mESM[39m ⚡️ Build success in 23ms
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @orchestrator-ui/jest-config
|
|
2
2
|
|
|
3
|
+
## 0.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- c8c6e10: Update npm dependency versions
|
|
8
|
+
|
|
9
|
+
## 0.1.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- ef5eace: Updates all major dependencies including Typescript to version 5 and NextJS to version 14
|
|
14
|
+
|
|
3
15
|
## 0.0.4
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,25 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orchestrator-ui/jest-config",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
8
8
|
"scripts": {
|
|
9
9
|
"build": "tsup jest-base.config.js --format esm",
|
|
10
|
-
"dev": "
|
|
11
|
-
"reset": "rm -rf node_modules"
|
|
10
|
+
"dev": "npm run build -- --watch"
|
|
12
11
|
},
|
|
13
12
|
"main": "./dist/",
|
|
14
13
|
"dependencies": {
|
|
15
|
-
"@testing-library/jest-dom": "^
|
|
14
|
+
"@testing-library/jest-dom": "^6.1.5",
|
|
16
15
|
"@testing-library/react": "^14.0.0",
|
|
17
|
-
"@testing-library/
|
|
18
|
-
"@
|
|
19
|
-
"
|
|
20
|
-
"esbuild": "^0.14.10",
|
|
16
|
+
"@testing-library/user-event": "^14.5.2",
|
|
17
|
+
"@types/jest": "^29.5.11",
|
|
18
|
+
"esbuild": "^0.20.0",
|
|
21
19
|
"esbuild-jest": "^0.5.0",
|
|
22
|
-
"jest": "^
|
|
23
|
-
"jest-watch-typeahead": "^
|
|
20
|
+
"jest": "^29.7.0",
|
|
21
|
+
"jest-watch-typeahead": "^2.2.2"
|
|
24
22
|
}
|
|
25
23
|
}
|