@foray1010/jest-preset 5.0.0 → 5.1.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,6 +3,12 @@
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
+ ## [5.1.0](https://github.com/foray1010/common-presets/compare/@foray1010/jest-preset@5.0.0...@foray1010/jest-preset@5.1.0) (2023-11-17)
7
+
8
+ ### Features
9
+
10
+ - **eslint-config:** enable regexp strict mode ([07d035b](https://github.com/foray1010/common-presets/commit/07d035badb143ce4490cd4731b8bf43667bbf07b))
11
+
6
12
  ## [5.0.0](https://github.com/foray1010/common-presets/compare/@foray1010/jest-preset@4.0.0...@foray1010/jest-preset@5.0.0) (2023-11-17)
7
13
 
8
14
  ### ⚠ BREAKING CHANGES
package/jest-preset.mjs CHANGED
@@ -4,12 +4,12 @@ const preset = {
4
4
  collectCoverage: true,
5
5
  collectCoverageFrom: ['<rootDir>/src/**/*.{cjs,cts,js,mjs,mts,ts,tsx}'],
6
6
  coveragePathIgnorePatterns: [
7
- /\/\./.source, // ignore all hidden files
8
- /\/__fixtures__\//.source,
9
- /\/__mocks__\//.source,
10
- /\/__tests__\//.source,
11
- /\/node_modules\//.source,
12
- /\.d\.(?:cts|mts|ts|tsx)$/.source, // ignore type definition files
7
+ /\/\./u.source, // ignore all hidden files
8
+ /\/__fixtures__\//u.source,
9
+ /\/__mocks__\//u.source,
10
+ /\/__tests__\//u.source,
11
+ /\/node_modules\//u.source,
12
+ /\.d\.(?:cts|mts|ts|tsx)$/u.source, // ignore type definition files
13
13
  ],
14
14
  coverageReporters: ['lcov', 'text-summary'],
15
15
  errorOnDeprecated: true,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package",
3
3
  "name": "@foray1010/jest-preset",
4
- "version": "5.0.0",
4
+ "version": "5.1.0",
5
5
  "homepage": "https://github.com/foray1010/common-presets/tree/master/packages/jest-preset#readme",
6
6
  "bugs": "https://github.com/foray1010/common-presets/issues",
7
7
  "repository": {
@@ -31,5 +31,5 @@
31
31
  "publishConfig": {
32
32
  "access": "public"
33
33
  },
34
- "gitHead": "45c8e63f5eebfb9caec22faaf5b961154b924f50"
34
+ "gitHead": "42c44850b5cf45044e373ab543d4bb83766cd678"
35
35
  }