Skip to content

Commit 958475b

Browse files
authored
Merge pull request #1665 from ansidev/patchfix/20250216
Patchfix 20250216
2 parents c62257c + 5b81a91 commit 958475b

File tree

5 files changed

+16
-15
lines changed

5 files changed

+16
-15
lines changed

.github/workflows/deploy_to_netlify.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,9 @@ jobs:
7373
- name: Build
7474
uses: ghacts/static-site@main
7575
with:
76-
node-version: 20
76+
node-version: 22
7777
package-manager: pnpm
78-
package-manager-version: 9
78+
package-manager-version: 10
7979
skip-lint: true
8080
skip-test: true
8181

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,5 @@ node_modules/
2020
public/sitemap.xml
2121
public/robots.txt
2222
public/feed.rss
23+
24+
.history/

.tool-versions

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pnpm 10.3.0
1+
pnpm 10.4.0

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"author": "Le Minh Tri <ansidev@gmail.com>",
55
"private": true,
66
"type": "module",
7-
"packageManager": "pnpm@10.3.0",
7+
"packageManager": "pnpm@10.4.0",
88
"scripts": {
99
"dev": "vite",
1010
"lint": "eslint --ext .js,.vue --ignore-path .gitignore src",

renovate.json

+10-11
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
11
{
22
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3-
"extends": [
4-
"config:base"
5-
],
3+
"extends": ["config:recommended"],
4+
"baseBranches": ["develop"],
65
"packageRules": [
76
{
8-
"matchPackagePatterns": [
9-
"*"
10-
],
11-
"matchUpdateTypes": [
12-
"major",
13-
"minor"
14-
]
7+
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
8+
"automerge": true
9+
},
10+
{
11+
"matchDepTypes": ["devDependencies"],
12+
"automerge": true
1513
}
16-
]
14+
],
15+
"platformAutomerge": true
1716
}

0 commit comments

Comments
 (0)