Compare commits

..

2 commits

Author SHA1 Message Date
0e3bad605e
update renovate config 2024-07-26 13:30:31 +09:00
b64779d5bc
fix test pattern
support node v22
2024-07-26 13:30:16 +09:00
2 changed files with 10 additions and 2 deletions

View file

@ -10,7 +10,7 @@
],
"scripts": {
"prepare": "git config core.hooksPath .githooks",
"test": "find src -name '*.md' -exec markdown-link-check {} + && node --test src && npm test --workspaces",
"test": "find src -name '*.md' -exec markdown-link-check {} + && node --test 'src/**/*.test.js' && npm test --workspaces",
"format": "prettier --write ."
},
"devDependencies": {

View file

@ -1 +1,9 @@
{ "extends": ["config:base", "config:semverAllMonthly", ":automergeMinor"] }
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
"config:semverAllMonthly",
":automergeAll",
":automergeBranch"
]
}