Skip to content
This repository was archived by the owner on Mar 7, 2025. It is now read-only.

Commit 92fd4c4

Browse files
committed
Update packages
1 parent 4343a95 commit 92fd4c4

16 files changed

+388
-377
lines changed

.eslintrc.cjs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,16 @@ module.exports = defineConfig({
3636
'no-else-return': 'error',
3737
'prefer-template': 'error',
3838

39+
'unicorn/import-style': [
40+
'error',
41+
{
42+
styles: {
43+
'node:path': {
44+
named: true,
45+
},
46+
},
47+
},
48+
],
3949
'unicorn/no-nested-ternary': 'off',
4050
'unicorn/no-null': 'off',
4151
'unicorn/number-literal-case': 'off',

.github/workflows/publish.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,15 @@ on:
55

66
jobs:
77
release:
8+
if: github.ref == 'refs/heads/main'
89
runs-on: ubuntu-latest
910
name: Release
1011
steps:
1112
- name: Checkout
1213
uses: actions/checkout@v4
1314

1415
- name: Install pnpm
15-
uses: pnpm/action-setup@v2
16+
uses: pnpm/action-setup@v3
1617

1718
- name: Set node version to 20
1819
uses: actions/setup-node@v4

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,18 @@
1818
"@eslint-types/prettier": "workspace:~",
1919
"@eslint-types/typescript-eslint": "workspace:~",
2020
"@eslint-types/unicorn": "workspace:~",
21-
"@types/eslint": "~8.56.5",
21+
"@types/eslint": "~8.56.7",
2222
"@types/json-schema": "~7.0.15",
23-
"@types/node": "~20.11.28",
24-
"@typescript-eslint/eslint-plugin": "~7.2.0",
25-
"@typescript-eslint/parser": "~7.2.0",
26-
"change-case": "~5.4.3",
23+
"@types/node": "~20.12.4",
24+
"@typescript-eslint/eslint-plugin": "~7.5.0",
25+
"@typescript-eslint/parser": "~7.5.0",
26+
"change-case": "~5.4.4",
2727
"eslint": "~8.57.0",
2828
"eslint-config-prettier": "~9.1.0",
2929
"eslint-define-config": "2.1.0",
3030
"eslint-gitignore": "~0.1.0",
3131
"eslint-plugin-prettier": "~5.1.3",
32-
"eslint-plugin-unicorn": "~51.0.1",
32+
"eslint-plugin-unicorn": "~52.0.0",
3333
"json-schema": "~0.4.0",
3434
"json-schema-to-typescript": "~13.1.2",
3535
"npm-run-all2": "~6.1.2",
@@ -38,9 +38,9 @@
3838
"prettier-plugin-organize-imports": "~3.2.4",
3939
"rimraf": "~5.0.5",
4040
"tsx": "~4.7.1",
41-
"typescript": "~5.4.2"
41+
"typescript": "~5.4.3"
4242
},
43-
"packageManager": "pnpm@8.15.5",
43+
"packageManager": "pnpm@8.15.6",
4444
"engines": {
4545
"node": ">=18.0.0",
4646
"npm": ">=9.0.0",

0 commit comments

Comments
 (0)