@theholocron/jest-config 1.16.0 → 3.0.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,7 +1,7 @@
1
1
  # @theholocron/jest-config
2
2
 
3
- ## 1.16.0
3
+ ## 3.0.0
4
4
 
5
- ### Minor Changes
5
+ ### Major Changes
6
6
 
7
- - [`4309ce8`](https://github.com/theholocron/configs/commit/4309ce860374743fa4a4ea781820f3875e647a46) Thanks [@iamnewton](https://github.com/iamnewton)! - Releasing more, as a test
7
+ - [`88d7f99`](https://github.com/theholocron/configs/commit/88d7f995dd02cdbe63817ac0d13905d5aea3777a) Thanks [@iamnewton](https://github.com/iamnewton)! - Initial release
package/jest-preset.js CHANGED
@@ -10,17 +10,15 @@ export default {
10
10
  "!<rootDir>/**/*.{mocks,mock}.js",
11
11
  "!<rootDir>/**/{__stories__,stories}/**",
12
12
  "!<rootDir>/**/*.{stories,story}/**",
13
- "!<rootDir>/**/__snapshots__/**"
13
+ "!<rootDir>/**/__snapshots__/**",
14
14
  ],
15
15
  coverageThreshold: {
16
16
  global: {
17
17
  statements: 80,
18
18
  branches: 80,
19
19
  lines: 80,
20
- functions: 80
21
- }
20
+ functions: 80,
21
+ },
22
22
  },
23
- modulePathIgnorePatterns: [
24
- "<rootDir>/dist/",
25
- ],
23
+ modulePathIgnorePatterns: ["<rootDir>/dist/"],
26
24
  };
package/package.json CHANGED
@@ -1,20 +1,20 @@
1
1
  {
2
2
  "name": "@theholocron/jest-config",
3
- "homepage": "https://github.com/the-holocron/configs/tree/master/packages/jest-preset#readme",
3
+ "version": "3.0.0",
4
4
  "description": "A Jest preset for testing code within the Galaxy.",
5
- "author": "Newton Koumantzelis",
6
- "version": "1.16.0",
7
- "main": "jest-preset.js",
8
- "type": "module",
9
- "repository": "https://github.com/theholocron/configs.git",
5
+ "homepage": "https://github.com/theholocron/configs/tree/main/packages/jest-preset#readme",
10
6
  "bugs": "https://github.com/theholocron/configs/issues",
11
- "releases": "https://github.com/theholocron/configs/releases",
12
- "wiki": "https://github.com/theholocron/configs/wiki",
7
+ "repository": "https://github.com/theholocron/configs.git",
13
8
  "license": "GPL-3.0",
9
+ "author": "Newton Koumantzelis",
10
+ "type": "module",
11
+ "main": "jest-preset.js",
12
+ "dependencies": {
13
+ "jest": "29.7.0"
14
+ },
14
15
  "publishConfig": {
15
16
  "access": "public"
16
17
  },
17
- "dependencies": {
18
- "jest": "29.7.0"
19
- }
18
+ "releases": "https://github.com/theholocron/configs/releases",
19
+ "wiki": "https://github.com/theholocron/configs/wiki"
20
20
  }