@orchestrator-ui/jest-config 1.2.0 → 1.3.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.
@@ -1,10 +1,10 @@
1
1
 
2
- > @orchestrator-ui/jest-config@1.2.0 build
2
+ > @orchestrator-ui/jest-config@1.3.0 build
3
3
  > tsup jest-base.config.js --format esm
4
4
 
5
5
  CLI Building entry: jest-base.config.js
6
6
  CLI tsup v8.0.2
7
7
  CLI Target: node16
8
8
  ESM Build start
9
- ESM dist/jest-base.config.mjs 858.00 B
10
- ESM ⚡️ Build success in 19ms
9
+ ESM dist/jest-base.config.mjs 854.00 B
10
+ ESM ⚡️ Build success in 25ms
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @orchestrator-ui/jest-config
2
2
 
3
+ ## 1.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 80f18ae: Fixes npm audit messages
8
+
9
+ ## 1.2.1
10
+
11
+ ### Patch Changes
12
+
13
+ - 09f3e09: Fixes markdown in README files
14
+
3
15
  ## 1.2.0
4
16
 
5
17
  ### Minor Changes
package/README.md CHANGED
@@ -4,6 +4,6 @@ Contains the jest configuration used in the [Workflow orchestrator][1] frontend
4
4
 
5
5
  This package is created from the [https://github.com/workfloworchestrator/example-orchestrator-ui/][2] repository and it's source can be found in [packages/jest-config][3]
6
6
 
7
- 1:[https://www.workfloworchestrator.org]
8
- 2:[https://github.com/workfloworchestrator/orchestrator-ui-library]
9
- 3:[https://github.com/workfloworchestrator/orchestrator-ui-library/tree/main/packages/jest-config]
7
+ [1]:[https://www.workfloworchestrator.org]
8
+ [2]:[https://github.com/workfloworchestrator/orchestrator-ui-library]
9
+ [3]:[https://github.com/workfloworchestrator/orchestrator-ui-library/tree/main/packages/jest-config]
@@ -13,8 +13,8 @@ var require_jest_base_config = __commonJS({
13
13
  coverageThreshold: null,
14
14
  testEnvironment: "jsdom",
15
15
  transform: {
16
- "^.+\\.tsx?$": "esbuild-jest",
17
- "^.+\\.jsx?$": "esbuild-jest"
16
+ "^.+\\.tsx?$": "babel-jest",
17
+ "^.+\\.jsx?$": "babel-jest"
18
18
  },
19
19
  setupFilesAfterEnv: ["@testing-library/jest-dom"],
20
20
  moduleDirectories: ["node_modules"],
@@ -5,8 +5,8 @@ module.exports = {
5
5
  coverageThreshold: null,
6
6
  testEnvironment: 'jsdom',
7
7
  transform: {
8
- '^.+\\.tsx?$': 'esbuild-jest',
9
- '^.+\\.jsx?$': 'esbuild-jest',
8
+ '^.+\\.tsx?$': 'babel-jest',
9
+ '^.+\\.jsx?$': 'babel-jest',
10
10
  },
11
11
  setupFilesAfterEnv: ['@testing-library/jest-dom'],
12
12
  moduleDirectories: ['node_modules'],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@orchestrator-ui/jest-config",
3
- "version": "1.2.0",
3
+ "version": "1.3.0",
4
4
  "license": "Apache-2.0",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -32,8 +32,7 @@
32
32
  "@testing-library/react": "^14.0.0",
33
33
  "@testing-library/user-event": "^14.5.2",
34
34
  "@types/jest": "^29.5.11",
35
- "esbuild": "^0.20.0",
36
- "esbuild-jest": "^0.5.0",
35
+ "babel-jest": "^29.7.0",
37
36
  "jest": "^29.7.0",
38
37
  "jest-environment-jsdom": "^29.7.0",
39
38
  "jest-watch-typeahead": "^2.2.2"