Skip to content

Commit 0d13af8

Browse files
Update nodejs updates to ^22.14.0 (#278)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent c3c96e8 commit 0d13af8

File tree

13 files changed

+54
-54
lines changed

13 files changed

+54
-54
lines changed

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
22.12.0
1+
22.14.0

apps/hello-world/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stanlemon/hello-world",
3-
"version": "0.1.35",
3+
"version": "0.1.36",
44
"description": "A hello world example using the webdev package.",
55
"author": "Stan Lemon <stanlemon@users.noreply.github.com>",
66
"license": "MIT",
@@ -14,7 +14,7 @@
1414
"test": "jest"
1515
},
1616
"engines": {
17-
"node": ">=22.12.0"
17+
"node": ">=22.14.0"
1818
},
1919
"dependencies": {
2020
"@stanlemon/webdev": "*",

apps/react-pouchdb-example/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stanlemon/react-pouchdb-example",
3-
"version": "0.3.23",
3+
"version": "0.3.24",
44
"description": "A react app using pouchdb built in typescript",
55
"author": "Stan Lemon <stanlemon@users.noreply.github.com",
66
"license": "MIT",
@@ -19,7 +19,7 @@
1919
"lint:fix": "eslint --fix ."
2020
},
2121
"engines": {
22-
"node": ">=22.12.0"
22+
"node": ">=22.14.0"
2323
},
2424
"dependencies": {
2525
"@fortawesome/fontawesome-svg-core": "^6.7.2",

apps/template/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stanlemon/app-template",
3-
"version": "0.3.83",
3+
"version": "0.3.84",
44
"description": "A template for creating apps using the webdev package.",
55
"author": "Stan Lemon <stanlemon@users.noreply.github.com>",
66
"license": "MIT",
@@ -21,7 +21,7 @@
2121
"lint:fix": "eslint --fix ."
2222
},
2323
"engines": {
24-
"node": ">=22.12.0"
24+
"node": ">=22.14.0"
2525
},
2626
"dependencies": {
2727
"@stanlemon/server-with-auth": "*",

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"type": "module",
33
"engines": {
4-
"node": ">=22.12.0"
4+
"node": ">=22.14.0"
55
},
66
"workspaces": [
77
"packages/*",

packages/cli/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "@stanlemon/cli",
3-
"version": "0.1.26",
3+
"version": "0.1.27",
44
"description": "A command tool to make all of my things easier.",
55
"author": "Stan Lemon <stanlemon@users.noreply.github.com>",
66
"license": "MIT",
77
"engines": {
8-
"node": ">=22.12.0"
8+
"node": ">=22.14.0"
99
},
1010
"type": "module",
1111
"main": "./index.js",

packages/eslint-config/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "@stanlemon/eslint-config",
3-
"version": "3.0.28",
3+
"version": "3.0.29",
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.12.0"
11+
"node": ">=22.14.0"
1212
},
1313
"type": "module",
1414
"exports": {

packages/react-couchdb-authentication/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stanlemon/react-couchdb-authentication",
3-
"version": "0.10.25",
3+
"version": "0.10.26",
44
"description": "React component for authenticating against a CouchDB user db and syncing it locally with PouchDB.",
55
"keywords": [
66
"react",
@@ -35,7 +35,7 @@
3535
},
3636
"license": "MIT",
3737
"engines": {
38-
"node": ">=22.12.0"
38+
"node": ">=22.14.0"
3939
},
4040
"peerDependencies": {
4141
"pouchdb": ">=8.0.0",
@@ -49,7 +49,7 @@
4949
"@types/async-retry": "^1.4.9",
5050
"@types/isomorphic-fetch": "^0.0.39",
5151
"@types/jest": "^29.5.14",
52-
"@types/node": "^22.10.2",
52+
"@types/node": "^22.14.0",
5353
"@types/pouchdb": "^6.4.2",
5454
"@types/react": "^19.0.12",
5555
"isomorphic-fetch": "^3.0.0",

packages/react-pouchdb/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stanlemon/react-pouchdb",
3-
"version": "0.6.14",
3+
"version": "0.6.15",
44
"description": "React components for interacting with PouchDB.",
55
"keywords": [
66
"react",
@@ -33,7 +33,7 @@
3333
"example": "WEBDEV_ENTRY=./example/Example.tsx webpack serve"
3434
},
3535
"engines": {
36-
"node": ">=22.12.0"
36+
"node": ">=22.14.0"
3737
},
3838
"peerDependencies": {
3939
"pouchdb": ">=8.0.0",
@@ -44,7 +44,7 @@
4444
"@stanlemon/webdev": "*",
4545
"@types/debug": "^4.1.12",
4646
"@types/lodash-es": "^4.17.12",
47-
"@types/node": "^22.10.2",
47+
"@types/node": "^22.14.0",
4848
"@types/pouchdb": "^6.4.2",
4949
"pouchdb": "^9.0.0",
5050
"pouchdb-adapter-memory": "^9.0.0",

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.3.36",
3+
"version": "0.3.37",
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.12.0"
8+
"node": ">=22.14.0"
99
},
1010
"type": "module",
1111
"main": "./src/index.js",

packages/server/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",
3-
"version": "0.3.46",
3+
"version": "0.3.47",
44
"description": "A basic express web server setup.",
55
"author": "Stan Lemon <stanlemon@users.noreply.github.com>",
66
"license": "MIT",
77
"engines": {
8-
"node": ">=22.12.0"
8+
"node": ">=22.14.0"
99
},
1010
"type": "module",
1111
"main": "./src/index.js",

0 commit comments

Comments
 (0)