@merkur/tools 0.34.0 → 0.35.3

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/CHANGELOG.md CHANGED
@@ -3,21 +3,23 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
- # [0.34.0](https://github.com/mjancarik/merkur/compare/v0.33.0...v0.34.0) (2023-10-11)
6
+ ## [0.35.3](https://github.com/mjancarik/merkur/compare/v0.35.2...v0.35.3) (2024-04-14)
7
7
 
8
8
  **Note:** Version bump only for package @merkur/tools
9
9
 
10
+ # [0.35.0](https://github.com/mjancarik/merkur/compare/v0.34.6...v0.35.0) (2024-04-09)
10
11
 
12
+ ### Bug Fixes
11
13
 
14
+ - 🐛 Fixed tests ([8082933](https://github.com/mjancarik/merkur/commit/80829338ec84feafa87d5c7a2d7c4d425a414ac1))
12
15
 
13
-
14
- # [0.33.0](https://github.com/mjancarik/merkur/compare/v0.32.1...v0.33.0) (2023-08-10)
16
+ # [0.34.0](https://github.com/mjancarik/merkur/compare/v0.33.0...v0.34.0) (2023-10-11)
15
17
 
16
18
  **Note:** Version bump only for package @merkur/tools
17
19
 
20
+ # [0.33.0](https://github.com/mjancarik/merkur/compare/v0.32.1...v0.33.0) (2023-08-10)
18
21
 
19
-
20
-
22
+ **Note:** Version bump only for package @merkur/tools
21
23
 
22
24
  # [0.32.0](https://github.com/mjancarik/merkur/compare/v0.31.1...v0.32.0) (2023-07-14)
23
25
 
package/jest.config.js CHANGED
@@ -1,7 +1,7 @@
1
1
  const testGroupRegexes = {
2
- unit: '(/__tests__/).*(Spec|test)\\.jsx?$',
3
- integration: '(/__integration__/).*(Spec|test)\\.jsx?$',
4
- all: '(/__integration__/)|(/__tests__/).*(Spec|test)\\.jsx?$',
2
+ unit: '(/__tests__/).*(Spec|test)\\.[jt]sx?$',
3
+ integration: '(/__integration__/).*(Spec|test)\\.[jt]sx?$',
4
+ all: '(/__integration__/)|(/__tests__/).*(Spec|test)\\.[jt]sx?$',
5
5
  };
6
6
 
7
7
  const testGroup =
@@ -16,6 +16,7 @@ module.exports = {
16
16
  testEnvironment: 'node',
17
17
  modulePaths: ['<rootDir>/'],
18
18
  testRegex: testGroupRegexes[testGroup],
19
+ testPathIgnorePatterns: ['/node_modules/', '/__snapshots__/'],
19
20
  transform: {
20
21
  '^.+\\.[t|j]sx?$': 'babel-jest',
21
22
  },
@@ -27,4 +28,9 @@ module.exports = {
27
28
  testEnvironmentOptions: {
28
29
  customExportConditions: ['node', 'node-addons'],
29
30
  },
31
+ moduleNameMapper: {
32
+ '\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$':
33
+ '<rootDir>/__mocks__/fileMock.js',
34
+ '\\.(css|less)$': 'identity-obj-proxy',
35
+ },
30
36
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@merkur/tools",
3
- "version": "0.34.0",
3
+ "version": "0.35.3",
4
4
  "description": "Merkur tools.",
5
5
  "bin": {
6
6
  "merkur-tools": "./bin/merkurTools.js"
@@ -56,5 +56,5 @@
56
56
  "peerDependencies": {
57
57
  "express": "*"
58
58
  },
59
- "gitHead": "3bc4a1efb8f8d5cee6bcf5f1454809747904153c"
59
+ "gitHead": "6b65a5581c1c32a14479c3bb4702c394592d0a20"
60
60
  }