Skip to content

Commit

Permalink
chore(dependencies): update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
nfroidure committed May 28, 2024
1 parent 00f05bf commit 5e279aa
Show file tree
Hide file tree
Showing 11 changed files with 735 additions and 2,475 deletions.
3 changes: 2 additions & 1 deletion .codeclimate.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# This file is automatically generated by a `metapak`
# module. Do not change it elsewhere, changes would
# module. Do not change it here, your changes would
# be overridden.

engines:
eslint:
enabled: true
Expand Down
5 changes: 2 additions & 3 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
*.md text eol=lf
*.html text eol=lf
*.js text eol=lf
# Enforce Unix newlines
* text=auto eol=lf
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ I'm a gentledev I:
```
<paste here>
```
If the result is lower than 18.16.0, there is
If the result is lower than 20.11.1, there is
poor chances I even have a look to it. Please,
use the last [NodeJS LTS version](https://nodejs.org/en/).

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
node-version: [18.x, 20.x]
node-version: [20.x]

services:
ftp:
Expand All @@ -33,12 +33,12 @@ jobs:
- "21100-21110:21100-21110"

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run pre-commit tests
Expand Down
7 changes: 7 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"recommendations": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"gruntfuggly.todo-tree"
]
}
6 changes: 3 additions & 3 deletions ARCHITECTURE.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ The `ftp` service creates easily usable FTP features
by exposing `list`, `put`, `get` and `delete`
methods and handling any unecessary complexity.

[See in context](./src/index.ts#L63-L68)
[See in context](./src/index.ts#L56-L61)



Expand All @@ -27,7 +27,7 @@ The `ftp` service creates easily usable FTP features
The service uses a pool to allow several parallel connections
to a FTP server.

[See in context](./src/index.ts#L161-L165)
[See in context](./src/index.ts#L152-L156)



Expand All @@ -36,5 +36,5 @@ The service uses a pool to allow several parallel connections
One can configure the FTP service to retry several times
before abandonnating the requested operation.

[See in context](./src/index.ts#L367-L371)
[See in context](./src/index.ts#L358-L362)

1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
> A simple wrapper for a simpler FTP client surface API with pool and retry management.
[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/nfroidure/ftp-service/blob/main/LICENSE)
[![Coverage Status](https://coveralls.io/repos/github/nfroidure/ftp-service/badge.svg?branch=main)](https://coveralls.io/github/nfroidure/ftp-service?branch=main)


[//]: # (::contents:start)
Expand Down
Loading

0 comments on commit 5e279aa

Please sign in to comment.