@orchestrator-ui/jest-config 0.0.2 → 0.0.4
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 +5 -3
- package/CHANGELOG.md +12 -0
- package/package.json +4 -3
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
|
+
yarn run v1.22.21
|
|
1
2
|
$ tsup jest-base.config.js --format esm
|
|
2
3
|
[34mCLI[39m Building entry: jest-base.config.js
|
|
3
|
-
[34mCLI[39m tsup v7.
|
|
4
|
+
[34mCLI[39m tsup v7.2.0
|
|
4
5
|
[34mCLI[39m Target: node16
|
|
5
6
|
[34mESM[39m Build start
|
|
6
|
-
[32mESM[39m [1mdist
|
|
7
|
-
[32mESM[39m ⚡️ Build success in
|
|
7
|
+
[32mESM[39m [1mdist/jest-base.config.mjs [22m[32m858.00 B[39m
|
|
8
|
+
[32mESM[39m ⚡️ Build success in 22ms
|
|
9
|
+
Done in 0.30s.
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @orchestrator-ui/jest-config
|
|
2
2
|
|
|
3
|
+
## 0.0.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 6597ac1: Test release after adding absolute imports (issue 414)
|
|
8
|
+
|
|
9
|
+
## 0.0.3
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 6d680f6: Test release before adding absolute imports (issue 414)
|
|
14
|
+
|
|
3
15
|
## 0.0.2
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,20 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orchestrator-ui/jest-config",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
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": "yarn build -- --watch"
|
|
10
|
+
"dev": "yarn build -- --watch",
|
|
11
|
+
"reset": "rm -rf node_modules"
|
|
11
12
|
},
|
|
12
13
|
"main": "./dist/",
|
|
13
14
|
"dependencies": {
|
|
14
15
|
"@testing-library/jest-dom": "^5.16.1",
|
|
15
16
|
"@testing-library/react": "^14.0.0",
|
|
16
17
|
"@testing-library/react-hooks": "^8.0.1",
|
|
17
|
-
"@testing-library/user-event": "^
|
|
18
|
+
"@testing-library/user-event": "^14.4.3",
|
|
18
19
|
"@types/jest": "^27.4.0",
|
|
19
20
|
"esbuild": "^0.14.10",
|
|
20
21
|
"esbuild-jest": "^0.5.0",
|