@ornikar/jest-config-react 11.0.0-alpha.0 → 11.0.0-alpha2.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/CHANGELOG.md CHANGED
@@ -3,12 +3,22 @@
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
- # [11.0.0-alpha.0](https://github.com/ornikar/shared-configs/compare/@ornikar/jest-config-react@10.3.0...@ornikar/jest-config-react@11.0.0-alpha.0) (2023-02-08)
6
+ # [11.0.0-alpha2.0](https://github.com/ornikar/shared-configs/compare/@ornikar/jest-config-react@10.3.1...@ornikar/jest-config-react@11.0.0-alpha2.0) (2023-02-08)
7
7
 
8
8
 
9
9
  ### Bug Fixes
10
10
 
11
+ * svg transformer ([b9e7f9a](https://github.com/ornikar/shared-configs/commit/b9e7f9a43f6b644361e26098c96d4e4ae530b500))
11
12
  * svg transformer inline ([11fe9de](https://github.com/ornikar/shared-configs/commit/11fe9deb3047460569fad0e8d9fd86647f5907d0))
13
+ * svg transformer lint fix ([0bc733a](https://github.com/ornikar/shared-configs/commit/0bc733a24e214b8f37f1ed52db80e8da4f4fe766))
14
+
15
+
16
+
17
+
18
+
19
+ ## [10.3.1](https://github.com/ornikar/shared-configs/compare/@ornikar/jest-config-react@10.3.0...@ornikar/jest-config-react@10.3.1) (2023-02-03)
20
+
21
+ **Note:** Version bump only for package @ornikar/jest-config-react
12
22
 
13
23
 
14
24
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ornikar/jest-config-react",
3
- "version": "11.0.0-alpha.0",
3
+ "version": "11.0.0-alpha2.0",
4
4
  "description": "✅⚛️ jest config for react",
5
5
  "repository": {
6
6
  "directory": "@ornikar/jest-config-react",
@@ -24,7 +24,7 @@
24
24
  "react-dom": "^16.6.3 || ^17.0.0"
25
25
  },
26
26
  "dependencies": {
27
- "@ornikar/jest-config": "^10.0.0-alpha.0",
27
+ "@ornikar/jest-config": "^10.0.0-alpha2.0",
28
28
  "identity-obj-proxy": "^3.0.0"
29
29
  },
30
30
  "devDependencies": {
@@ -37,5 +37,5 @@
37
37
  "scripts": {
38
38
  "lint:eslint": "yarn ../.. eslint --report-unused-disable-directives --quiet @ornikar/jest-config-react"
39
39
  },
40
- "gitHead": "3c32ef2496e9ab2b50b3bd0c8b1e3c45a1369421"
40
+ "gitHead": "02fe8032b09313b2840fc05558d21465e4ffb3c7"
41
41
  }
@@ -5,6 +5,6 @@ const path = require('path');
5
5
  module.exports = {
6
6
  process(src, filePath) {
7
7
  const assetFilename = JSON.stringify(path.basename(filePath));
8
- return `module.exports = ${assetFilename};`;
8
+ return { code: `module.exports = ${assetFilename};` };
9
9
  },
10
10
  };