Skip to content

Commit 1673fd2

Browse files
authored
Merge pull request #427 from Commencis/chore/update-dependencies
chore: update core dependencies
2 parents 7cf83d4 + 2fd850f commit 1673fd2

File tree

11 files changed

+444
-906
lines changed

11 files changed

+444
-906
lines changed

.changeset/nice-pets-happen.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
'@commencis/prettier-config': minor
3+
'@commencis/commitlint-config': minor
4+
'@commencis/eslint-config': minor
5+
'@commencis/eslint-plugin': minor
6+
'@commencis/lint-staged-config': minor
7+
'@commencis/stylelint-config': minor
8+
'@commencis/ts-config': patch
9+
---
10+
11+
chore: update core dependencies

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
24.12
1+
24.13

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,14 @@ The repository is structured as a monorepo, which allows for managing all the pa
3333

3434
#### Node.js
3535

36-
Before you begin, ensure you have `node: >=24.12` installed on your system.
36+
Before you begin, ensure you have `node: >=24.13` installed on your system.
3737

3838
#### pnpm
3939

40-
This project uses `pnpm@10.25.0` as the package manager. You can install it either by activating with `corepack` which is the recommended way:
40+
This project uses `pnpm@10.28.2` as the package manager. You can install it either by activating with `corepack` which is the recommended way:
4141

4242
```bash
43-
corepack prepare pnpm@10.25.0 --activate
43+
corepack prepare pnpm@10.28.2 --activate
4444
corepack enable pnpm
4545
```
4646

eslint.config.js

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,4 @@
1-
import {
2-
commencisBaseConfig,
3-
commencisPrettierConfig,
4-
commencisTypescriptConfig,
5-
defineConfig,
6-
} from '@commencis/eslint-config';
1+
import { typescriptConfig } from '@commencis/eslint-config';
2+
import { defineConfig } from 'eslint/config';
73

8-
export default defineConfig(
9-
...commencisBaseConfig,
10-
...commencisTypescriptConfig,
11-
...commencisPrettierConfig,
12-
{
13-
ignores: ['**/dist/', 'coverage'],
14-
}
15-
);
4+
export default defineConfig(typescriptConfig);

package.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
"license": "Apache-2.0",
2121
"type": "module",
2222
"engines": {
23-
"node": ">=24.12"
23+
"node": ">=24.13"
2424
},
25-
"packageManager": "pnpm@10.27.0",
25+
"packageManager": "pnpm@10.28.2",
2626
"scripts": {
2727
"preinstall": "npx only-allow pnpm",
2828
"dev": "turbo run dev",
@@ -47,21 +47,21 @@
4747
},
4848
"devDependencies": {
4949
"@changesets/cli": "2.29.8",
50-
"@commencis/commitlint-config": "2.1.0",
51-
"@commencis/eslint-config": "2.5.0",
52-
"@commencis/lint-staged-config": "2.1.0",
53-
"@commencis/prettier-config": "2.2.0",
50+
"@commencis/commitlint-config": "3.0.1",
51+
"@commencis/eslint-config": "3.0.1",
52+
"@commencis/lint-staged-config": "3.0.1",
53+
"@commencis/prettier-config": "3.0.1",
5454
"@commencis/ts-config": "1.0.0",
55-
"@commitlint/cli": "20.3.0",
55+
"@commitlint/cli": "20.4.0",
5656
"@svitejs/changesets-changelog-github-compact": "1.2.0",
57-
"@vitest/coverage-v8": "4.0.16",
57+
"@vitest/coverage-v8": "4.0.18",
5858
"eslint": "9.39.2",
5959
"husky": "9.1.7",
6060
"lint-staged": "16.2.7",
61-
"prettier": "3.7.4",
62-
"tsdown": "0.18.4",
63-
"turbo": "2.7.2",
61+
"prettier": "3.8.1",
62+
"tsdown": "0.20.1",
63+
"turbo": "2.8.1",
6464
"typescript": "5.9.3",
65-
"vitest": "4.0.16"
65+
"vitest": "4.0.18"
6666
}
6767
}

packages/commitlint-config/package.json

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,18 @@
3535
"lint:types": "tsc --noEmit"
3636
},
3737
"dependencies": {
38-
"@commitlint/config-conventional": "20.3.0"
38+
"@commitlint/config-conventional": "20.4.0"
3939
},
4040
"devDependencies": {
4141
"@commencis/ts-config": "1.0.0",
42-
"@commitlint/types": "20.2.0"
42+
"@commitlint/types": "20.4.0"
43+
},
44+
"peerDependencies": {
45+
"@commitlint/cli": ">=20"
46+
},
47+
"peerDependenciesMeta": {
48+
"@commitlint/cli": {
49+
"optional": true
50+
}
4351
}
4452
}

packages/commitlint-config/tsdown.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@ export default defineConfig({
55
format: ['cjs', 'esm'],
66
dts: true,
77
clean: true,
8+
inlineOnly: ['@commitlint/types', 'conventional-commits-parser'],
89
});

packages/lint-staged-config/package.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,13 @@
3636
"devDependencies": {
3737
"@commencis/ts-config": "1.0.0",
3838
"lint-staged": "16.2.7"
39+
},
40+
"peerDependencies": {
41+
"lint-staged": ">=16.2"
42+
},
43+
"peerDependenciesMeta": {
44+
"lint-staged": {
45+
"optional": true
46+
}
3947
}
4048
}

packages/prettier-config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
},
3636
"devDependencies": {
3737
"@commencis/ts-config": "1.0.0",
38-
"prettier": "3.7.4"
38+
"prettier": "3.8.1"
3939
},
4040
"peerDependencies": {
4141
"prettier": ">=3.7"

0 commit comments

Comments
 (0)