@theholocron/jest-config 3.2.0 → 3.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @theholocron/jest-config
2
2
 
3
+ ## 3.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`30e50b0`](https://github.com/theholocron/configs/commit/30e50b000dd1f9ac61e3ad1c3abee2ab3a52e7ac) Thanks [@iamnewton](https://github.com/iamnewton)! - Add in stylelint
8
+
9
+ ## 3.2.1
10
+
11
+ ### Patch Changes
12
+
13
+ - [`3d54f12`](https://github.com/theholocron/configs/commit/3d54f12618e8a6cc6ccc4559eb48ef402bb04d77) Thanks [@iamnewton](https://github.com/iamnewton)! - Fix the storybook config; its missing the index file from the export
14
+
3
15
  ## 3.2.0
4
16
 
5
17
  ### Minor Changes
package/jest-preset.js CHANGED
@@ -2,7 +2,7 @@
2
2
  * @see https://jestjs.io/docs/configuration
3
3
  * @type {import("jest").Config}
4
4
  */
5
- export default {
5
+ const config = {
6
6
  collectCoverage: true,
7
7
  collectCoverageFrom: [
8
8
  "<rootDir>/src/**/*.{js,jsx,ts,tsx}",
@@ -22,3 +22,5 @@ export default {
22
22
  },
23
23
  modulePathIgnorePatterns: ["<rootDir>/dist/"],
24
24
  };
25
+
26
+ export default config;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theholocron/jest-config",
3
- "version": "3.2.0",
3
+ "version": "3.3.0",
4
4
  "description": "A Jest preset for testing code within the Galaxy.",
5
5
  "homepage": "https://github.com/theholocron/configs/tree/main/packages/jest-preset#readme",
6
6
  "bugs": "https://github.com/theholocron/configs/issues",