Skip to content

Commit becf4ba

Browse files
committed
chore(dependencies): update npm-check-updates and ESLint dependencies; refine Dependabot and ncu config to include cooldown
1 parent 5b151ff commit becf4ba

File tree

4 files changed

+72
-100
lines changed

4 files changed

+72
-100
lines changed

.github/dependabot.yml

Lines changed: 5 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
# To get started with Dependabot version updates, you'll need to specify which
2-
# package ecosystems to update and where the package manifests are located.
3-
# Please see the documentation for all configuration options:
4-
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
1+
# https://docs.github.com/en/code-security/dependabot/working-with-dependabot/dependabot-options-reference
52

63
version: 2
74
updates:
@@ -10,19 +7,13 @@ updates:
107
directory: "/"
118
schedule:
129
interval: "weekly"
13-
open-pull-requests-limit: 0
14-
ignore:
15-
- dependency-name: "*"
16-
update-types:
17-
["version-update:semver-minor", "version-update:semver-patch"]
10+
cooldown:
11+
default-days: 8
1812

1913
# Maintain dependencies for npm
2014
- package-ecosystem: "npm"
2115
directory: "/"
2216
schedule:
2317
interval: "weekly"
24-
open-pull-requests-limit: 0
25-
ignore:
26-
- dependency-name: "*"
27-
update-types:
28-
["version-update:semver-minor", "version-update:semver-patch"]
18+
cooldown:
19+
default-days: 8

.ncurc.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
{
2+
"$schema": "https://raw.githubusercontent.com/raineorshine/npm-check-updates/main/src/types/RunOptions.json",
3+
"cooldown": 4,
24
"reject": [
35
"@types/chai",
46
"@types/chai-as-promised",
@@ -9,4 +11,4 @@
911
"rimraf",
1012
"rimraf why: https://github.com/isaacs/rimraf/issues/316 (!!)"
1113
]
12-
}
14+
}

package-lock.json

Lines changed: 58 additions & 79 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"docs:build": "typedoc",
3535
"docs:serve": "cp .serve.json build/docs/serve.json && touch build/docs/.nojekyll && serve build/docs",
3636
"update": "run-p update:*",
37-
"update:deps": "ncu -u --install always",
37+
"update:deps": "npm-check-updates --upgrade --install always",
3838
"install:pinact": "go install github.com/suzuki-shunsuke/pinact/cmd/pinact@latest",
3939
"update:actions": "pinact run -u",
4040
"release": "release-it",
@@ -65,7 +65,7 @@
6565
"author": "Matthew McEachen <matthew-batchcluster@photostructure.com>",
6666
"license": "MIT",
6767
"devDependencies": {
68-
"@eslint/js": "^9.34.0",
68+
"@eslint/js": "^9.35.0",
6969
"@sinonjs/fake-timers": "^14.0.0",
7070
"@types/chai": "^4.3.11",
7171
"@types/chai-as-promised": "^7",
@@ -81,16 +81,16 @@
8181
"chai-withintoleranceof": "^1.0.1",
8282
"eslint": "^9.27.0",
8383
"eslint-plugin-import": "^2.32.0",
84-
"globals": "^16.3.0",
85-
"mocha": "^11.7.1",
86-
"npm-check-updates": "^18.0.2",
84+
"globals": "^16.4.0",
85+
"mocha": "^11.7.2",
86+
"npm-check-updates": "^18.2.1",
8787
"npm-run-all": "4.1.5",
8888
"prettier": "^3.6.2",
8989
"prettier-plugin-organize-imports": "^4.2.0",
9090
"release-it": "^19.0.4",
9191
"rimraf": "^5.0.10",
9292
"seedrandom": "^3.0.5",
93-
"serve": "^14.2.4",
93+
"serve": "^14.2.5",
9494
"source-map-support": "^0.5.21",
9595
"split2": "^4.2.0",
9696
"ts-node": "^10.9.2",

0 commit comments

Comments
 (0)