Skip to content

Commit 8b19081

Browse files
Update npm non-major (catch-all) (#324)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 9b4aa51 commit 8b19081

File tree

8 files changed

+68
-91
lines changed

8 files changed

+68
-91
lines changed

apps/hello-world/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stanlemon/hello-world",
3-
"version": "0.1.39",
3+
"version": "0.1.40",
44
"description": "A hello world example using the webdev package.",
55
"author": "Stan Lemon <stanlemon@users.noreply.github.com>",
66
"license": "MIT",
@@ -14,15 +14,15 @@
1414
"test": "jest"
1515
},
1616
"engines": {
17-
"node": ">=22.15.1"
17+
"node": ">=22.18.0"
1818
},
1919
"dependencies": {
2020
"@stanlemon/webdev": "*",
21-
"react": "^19.1.0",
22-
"react-dom": "^19.1.0"
21+
"react": "^19.1.1",
22+
"react-dom": "^19.1.1"
2323
},
2424
"devDependencies": {
25-
"@types/react": "19.1.8",
26-
"@types/react-dom": "19.1.6"
25+
"@types/react": "19.1.9",
26+
"@types/react-dom": "19.1.7"
2727
}
2828
}

apps/template/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stanlemon/app-template",
3-
"version": "0.4.12",
3+
"version": "0.4.13",
44
"description": "A template for creating apps using the webdev package.",
55
"author": "Stan Lemon <stanlemon@users.noreply.github.com>",
66
"license": "MIT",
@@ -21,22 +21,22 @@
2121
"lint:fix": "eslint --fix ."
2222
},
2323
"engines": {
24-
"node": ">=22.15.1"
24+
"node": ">=22.18.0"
2525
},
2626
"dependencies": {
2727
"@stanlemon/server-with-auth": "*",
2828
"@stanlemon/webdev": "*",
29-
"react": "^19.1.0",
29+
"react": "^19.1.1",
3030
"react-cookie": "^8.0.1",
31-
"react-dom": "^19.1.0",
31+
"react-dom": "^19.1.1",
3232
"wouter": "^3.7.1"
3333
},
3434
"devDependencies": {
3535
"@testing-library/react": "16.3.0",
3636
"@testing-library/user-event": "14.6.1",
3737
"@types/jest": "30.0.0",
38-
"@types/react": "19.1.8",
39-
"@types/react-dom": "19.1.6",
38+
"@types/react": "19.1.9",
39+
"@types/react-dom": "19.1.7",
4040
"concurrently": "9.2.0",
4141
"nodemon": "3.1.10",
4242
"supertest": "7.1.4"

package-lock.json

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

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"type": "module",
33
"engines": {
4-
"node": ">=22.15.1"
4+
"node": ">=22.18.0"
55
},
66
"workspaces": [
77
"packages/*",
@@ -30,7 +30,7 @@
3030
"lockfile:clean": "rm -f package-lock.json && npm install"
3131
},
3232
"resolutions": {
33-
"@types/react": "^19.1.2",
34-
"@types/react-dom": "^19.1.6"
33+
"@types/react": "^19.1.9",
34+
"@types/react-dom": "^19.1.7"
3535
}
3636
}

packages/eslint-config/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "@stanlemon/eslint-config",
3-
"version": "3.0.46",
3+
"version": "3.0.47",
44
"description": "My typical eslint setup, but without all the copy and paste.",
55
"keywords": [
66
"eslint"
77
],
88
"author": "Stan Lemon <stanlemon@users.noreply.github.com>",
99
"license": "MIT",
1010
"engines": {
11-
"node": ">=22.15.1"
11+
"node": ">=22.18.0"
1212
},
1313
"type": "module",
1414
"exports": {
@@ -22,8 +22,8 @@
2222
"lint:fix": "eslint --fix ."
2323
},
2424
"dependencies": {
25-
"@eslint/js": "^9.31.0",
26-
"eslint": "^9.31.0",
25+
"@eslint/js": "^9.32.0",
26+
"eslint": "^9.32.0",
2727
"eslint-config-prettier": "^10.1.8",
2828
"eslint-config-react": "^1.1.7",
2929
"eslint-config-typescript": "^3.0.0",
@@ -35,7 +35,7 @@
3535
"eslint-plugin-react": "^7.37.5",
3636
"globals": "^16.3.0",
3737
"prettier": "^3.6.2",
38-
"typescript": "^5.8.3",
39-
"typescript-eslint": "^8.33.0"
38+
"typescript": "^5.9.2",
39+
"typescript-eslint": "^8.38.0"
4040
}
4141
}

packages/server-with-auth/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "@stanlemon/server-with-auth",
3-
"version": "0.4.8",
3+
"version": "0.4.9",
44
"description": "A basic express web server setup with authentication baked in.",
55
"author": "Stan Lemon <stanlemon@users.noreply.github.com>",
66
"license": "MIT",
77
"engines": {
8-
"node": ">=22.15.1"
8+
"node": ">=22.18.0"
99
},
1010
"type": "module",
1111
"main": "./src/index.js",

packages/server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"author": "Stan Lemon <stanlemon@users.noreply.github.com>",
66
"license": "MIT",
77
"engines": {
8-
"node": ">=22.15.1"
8+
"node": ">=22.18.0"
99
},
1010
"type": "module",
1111
"main": "./src/index.js",

0 commit comments

Comments
 (0)