Skip to content

Commit 3e1b672

Browse files
authored
chore(release): bump version and deploy packages (#314)
This PR was opened by the [Changesets release](https://github.com/changesets/action) GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated. # Releases ## @mheob/[email protected] ### Patch Changes - [#313](#313) ([@mheob](https://github.com/mheob)): fix issues after upgrade ## @mheob/[email protected] ### Patch Changes - [#313](#313) ([@mheob](https://github.com/mheob)): fix issues after upgrade
1 parent c4a15df commit 3e1b672

File tree

8 files changed

+24
-11
lines changed

8 files changed

+24
-11
lines changed

.changeset/breezy-aliens-clap.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changeset/funny-sloths-live.md

Lines changed: 0 additions & 2 deletions
This file was deleted.

packages/commitlint-config/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @mheob/commitlint-config
22

3+
## 1.2.5
4+
5+
### Patch Changes
6+
7+
- [#313](https://github.com/mheob/config/pull/313) ([@mheob](https://github.com/mheob)): fix issues after upgrade
8+
39
## 1.2.4
410

511
### Patch Changes

packages/commitlint-config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mheob/commitlint-config",
3-
"version": "1.2.4",
3+
"version": "1.2.5",
44
"description": "My personal configuration for commitlint.",
55
"keywords": [
66
"commitlint",

packages/eslint-config/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @mheob/eslint-config
22

3+
## 8.14.3
4+
5+
### Patch Changes
6+
7+
- [#313](https://github.com/mheob/config/pull/313) ([@mheob](https://github.com/mheob)): fix issues after upgrade
8+
39
## 8.14.2
410

511
### Patch Changes

packages/eslint-config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mheob/eslint-config",
3-
"version": "8.14.2",
3+
"version": "8.14.3",
44
"description": "My personal configuration for eslint.",
55
"keywords": [
66
"eslint",

packages/eslint-config/src/configs/nextjs.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@ import { GLOB_SRC } from '../globs';
22
import type { OptionsFiles, OptionsOverrides, TypedFlatConfigItem } from '../types';
33
import { ensurePackages, interopDefault } from '../utils';
44

5-
// eslint-disable-next-line ts/no-explicit-any
5+
/**
6+
*
7+
* @param rules
8+
*/
69
function normalizeRules(rules: Record<string, any>): Record<string, any> {
710
return Object.fromEntries(
811
Object.entries(rules).map(([key, value]) => [key, typeof value === 'string' ? [value] : value]),

packages/eslint-config/src/configs/typescript.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,12 @@ export async function typescript(
6868
interopDefault(import('@typescript-eslint/parser')),
6969
] as const);
7070

71+
/**
72+
*
73+
* @param typeAware
74+
* @param files
75+
* @param ignores
76+
*/
7177
function makeParser(
7278
typeAware: boolean,
7379
files: string[],

0 commit comments

Comments
 (0)