Skip to content

Commit b36ebd0

Browse files
committed
chore: bump (dev)Dependencies, add .editorconfig
1 parent 77c229e commit b36ebd0

File tree

6 files changed

+382
-408
lines changed

6 files changed

+382
-408
lines changed

.editorconfig

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 2
6+
tab_width = 2
7+
end_of_line = lf
8+
charset = utf-8
9+
trim_trailing_whitespace = true
10+
insert_final_newline = true

.github/workflows/codeql.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'CodeQL'
1+
name: CodeQL
22

33
on:
44
push:

.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
1717
fetch-depth: 0
1818

19-
- name: Setup Node.js 20
19+
- name: Setup Node.js LTS
2020
uses: actions/setup-node@v4
2121
with:
22-
node-version: 20
22+
node-version: lts/*
2323
cache: yarn
2424
env:
2525
# https://github.com/actions/setup-node/issues/531#issuecomment-1819151412

.github/workflows/size-limit.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
steps:
1212
- uses: actions/checkout@v4
1313

14-
- name: Setup Node.js 20
14+
- name: Setup Node.js LTS
1515
uses: actions/setup-node@v4
1616
with:
17-
node-version: 20
17+
node-version: lts/*
1818
cache: yarn
1919
env:
2020
# https://github.com/actions/setup-node/issues/531#issuecomment-1819151412

package.json

+15-11
Original file line numberDiff line numberDiff line change
@@ -48,34 +48,38 @@
4848
"@1stg/app-config": "^10.0.1",
4949
"@changesets/changelog-github": "^0.5.0",
5050
"@changesets/cli": "^2.27.1",
51-
"@commitlint/cli": "^18.4.3",
51+
"@commitlint/cli": "^18.5.0",
5252
"@mdx-js/rollup": "^3.0.0",
5353
"@pkgr/rollup": "^5.0.0",
54-
"@size-limit/preset-small-lib": "^11.0.1",
54+
"@size-limit/preset-small-lib": "^11.0.2",
5555
"@types/mdx": "^2.0.10",
56-
"@types/node": "^20.10.6",
57-
"@types/react": "^18.2.46",
56+
"@types/node": "^20.11.5",
57+
"@types/react": "^18.2.48",
5858
"@types/react-dom": "^18.2.18",
59-
"@types/web": "^0.0.134",
59+
"@types/web": "^0.0.135",
6060
"@vitejs/plugin-react-swc": "^3.5.0",
61-
"@vitest/coverage-v8": "^1.1.1",
61+
"@vitest/coverage-v8": "^1.2.1",
6262
"eslint": "^8.56.0",
6363
"github-markdown-css": "^5.5.0",
6464
"lint-staged": "^15.2.0",
6565
"npm-run-all": "^4.1.5",
66+
"prettier": "^3.2.4",
6667
"react": "^18.2.0",
6768
"react-dom": "^18.2.0",
68-
"react-router-dom": "^6.21.1",
69+
"react-router-dom": "^6.21.3",
6970
"rehype-slug": "^6.0.0",
7071
"remark-gfm": "^4.0.0",
7172
"simple-git-hooks": "^2.9.0",
72-
"size-limit": "^11.0.1",
73-
"stylelint": "^16.1.0",
73+
"size-limit": "^11.0.2",
74+
"stylelint": "^16.2.0",
7475
"type-coverage": "^2.27.1",
7576
"typescript": "^5.3.3",
7677
"unplugin-auto-import": "^0.17.3",
77-
"vite": "^5.0.10",
78-
"vitest": "^1.1.1"
78+
"vite": "^5.0.12",
79+
"vitest": "^1.2.1"
80+
},
81+
"resolutions": {
82+
"prettier": "^3.2.4"
7983
},
8084
"size-limit": [
8185
{

0 commit comments

Comments
 (0)