@anmiles/downloader 2.0.2 → 2.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.vscode/settings.json +0 -3
- package/CHANGELOG.md +9 -0
- package/README.md +3 -8
- package/package.json +2 -2
package/.vscode/settings.json
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [2.0.4](../../tags/v2.0.4) - 2023-05-07
|
|
9
|
+
### Changed
|
|
10
|
+
- Cleanup cSpell words
|
|
11
|
+
|
|
12
|
+
## [2.0.3](../../tags/v2.0.3) - 2023-05-07
|
|
13
|
+
### Changed
|
|
14
|
+
- Updated README formatting
|
|
15
|
+
- Update `@anmiles/eslint-config`
|
|
16
|
+
|
|
8
17
|
## [2.0.2](../../tags/v2.0.2) - 2023-05-06
|
|
9
18
|
### Changed
|
|
10
19
|
- Use shared eslint config
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# @anmiles/
|
|
1
|
+
# @anmiles/downloader
|
|
2
2
|
|
|
3
3
|
Wrapper for downloading data as string, buffer or complex types
|
|
4
4
|
|
|
@@ -6,14 +6,9 @@ Wrapper for downloading data as string, buffer or complex types
|
|
|
6
6
|
|
|
7
7
|
## Installation
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
`npm install`
|
|
11
|
-
1. Build
|
|
12
|
-
`npm run build`
|
|
13
|
-
1. Test everything
|
|
14
|
-
`npm test`
|
|
9
|
+
`npm install @anmiles/downloader`
|
|
15
10
|
|
|
16
|
-
## Usage
|
|
11
|
+
## Usage
|
|
17
12
|
|
|
18
13
|
```js
|
|
19
14
|
import { download } from '@anmiles/downloader';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@anmiles/downloader",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.4",
|
|
4
4
|
"description": "Wrapper for downloading data as string, buffer or complex types",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"download",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"iconv-lite": "^0.6.3"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@anmiles/eslint-config": "^1.0.
|
|
33
|
+
"@anmiles/eslint-config": "^1.0.6",
|
|
34
34
|
"@types/event-emitter": "^0.3.3",
|
|
35
35
|
"@types/jest": "^29.5.1",
|
|
36
36
|
"@typescript-eslint/eslint-plugin": "^5.59.2",
|