Skip to content

Commit

Permalink
chore(deps): update node versions and dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
digitalsadhu committed Nov 27, 2023
1 parent 939e1ec commit 4778c47
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 18 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 16.x
node-version: 20.x
- name: npm install
run: |
npm install
Expand All @@ -38,7 +38,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 16.x
node-version: 20.x
- name: npm install
run: |
npm install
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
node-version: [12.x, 14.x, 16.x]
node-version: [16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- name: Use Node.js ${{ matrix.node-version }}
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ coverage/
node_modules/
*.log
.vscode
.tap
26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,23 +38,23 @@
"fastify-plugin": "^4.0.0"
},
"devDependencies": {
"@podium/podlet": "4.4.74",
"@podium/podlet": "4.5.0",
"@podium/test-utils": "2.5.2",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "11.0.0",
"@semantic-release/commit-analyzer": "11.1.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "9.2.1",
"@semantic-release/npm": "11.0.0",
"@semantic-release/release-notes-generator": "12.0.0",
"eslint": "8.52.0",
"@semantic-release/github": "9.2.3",
"@semantic-release/npm": "11.0.1",
"@semantic-release/release-notes-generator": "12.1.0",
"eslint": "8.54.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.10.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-prettier": "4.2.1",
"fastify": "3.29.5",
"fastify-formbody": "5.3.0",
"prettier": "2.8.8",
"semantic-release": "22.0.6",
"tap": "16.3.9"
"eslint-plugin-prettier": "5.0.1",
"fastify": "4.24.3",
"@fastify/formbody": "7.4.0",
"prettier": "3.1.0",
"semantic-release": "22.0.8",
"tap": "18.6.1"
}
}
5 changes: 3 additions & 2 deletions test/podlet-plugin.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
/* eslint-disable import/no-extraneous-dependencies */
/* eslint-disable no-param-reassign */

'use strict';

const fastifyForm = require('fastify-formbody');
const fastifyForm = require('@fastify/formbody');
const { request } = require('@podium/test-utils');
const fastify = require('fastify');
const Podlet = require('@podium/podlet');
Expand Down Expand Up @@ -73,7 +74,7 @@ class Server {
.listen(0)
.then(() => {
const address = this.app.server.address();
const url = `http://${address.address}:${address.port}`;
const url = `http://localhost:${address.port}`;
resolve(url);
})
.catch((error) => {
Expand Down

0 comments on commit 4778c47

Please sign in to comment.