@anmiles/downloader 5.0.0 → 5.0.2

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/.eslintignore ADDED
@@ -0,0 +1,2 @@
1
+ coverage
2
+ dist
package/.eslintrc.js CHANGED
@@ -6,9 +6,4 @@ module.exports = {
6
6
  './node_modules/@anmiles/eslint-config/src/ts.preset.js',
7
7
  './node_modules/@anmiles/eslint-config/src/jest.preset.js',
8
8
  ],
9
-
10
- ignorePatterns : [
11
- 'coverage',
12
- 'dist',
13
- ],
14
9
  };
package/CHANGELOG.md CHANGED
@@ -5,6 +5,14 @@ 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
+ ## [5.0.2](../../tags/v5.0.2) - 2024-03-20
9
+ ### Changed
10
+ - Update dependencies
11
+
12
+ ## [5.0.1](../../tags/v5.0.1) - 2024-03-16
13
+ ### Changed
14
+ - Use dedicated .eslintignore
15
+
8
16
  ## [5.0.0](../../tags/v5.0.0) - 2024-03-16
9
17
  ### Changed
10
18
  - Update eslint config and raise minimum supported NodeJS version to match one in typescript-eslint plugin
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anmiles/downloader",
3
- "version": "5.0.0",
3
+ "version": "5.0.2",
4
4
  "description": "Wrapper for downloading data as string, buffer or complex types",
5
5
  "keywords": [
6
6
  "download",
@@ -17,7 +17,6 @@
17
17
  "main": "dist/index.js",
18
18
  "scripts": {
19
19
  "build": "rimraf dist && tsc -p ./tsconfig.build.json",
20
- "build:ci": "tsc -noEmit -p ./tsconfig.build.json",
21
20
  "lint": "eslint .",
22
21
  "lint:fix": "npm run lint -- --fix",
23
22
  "test": "jest --verbose",
@@ -31,19 +30,19 @@
31
30
  "iconv-lite": "^0.6.3"
32
31
  },
33
32
  "devDependencies": {
34
- "@anmiles/eslint-config": "^7.0.1",
35
- "@anmiles/tsconfig": "^2.0.1",
33
+ "@anmiles/eslint-config": "^7.1.1",
34
+ "@anmiles/tsconfig": "^3.0.1",
36
35
  "@stylistic/eslint-plugin": "^1.7.0",
37
36
  "@types/event-emitter": "^0.3.5",
38
37
  "@types/jest": "^29.5.12",
39
- "@typescript-eslint/eslint-plugin": "^7.2.0",
40
- "@typescript-eslint/parser": "^7.2.0",
38
+ "@typescript-eslint/eslint-plugin": "^7.3.1",
39
+ "@typescript-eslint/parser": "^7.3.1",
41
40
  "eslint": "^8.57.0",
42
41
  "eslint-import-resolver-typescript": "^3.6.1",
43
42
  "eslint-plugin-align-assignments": "^1.1.2",
44
43
  "eslint-plugin-import": "^2.29.1",
45
44
  "eslint-plugin-jest": "^27.9.0",
46
- "eslint-plugin-jsonc": "^2.13.0",
45
+ "eslint-plugin-jsonc": "^2.14.1",
47
46
  "eslint-plugin-n": "^16.6.2",
48
47
  "eslint-plugin-promise": "^6.1.1",
49
48
  "event-emitter": "^0.3.5",