@anmiles/downloader 4.0.0 → 4.0.1

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/.eslintrc.js CHANGED
@@ -3,4 +3,9 @@ module.exports = {
3
3
  extends : [
4
4
  './node_modules/@anmiles/eslint-config/.eslintrc.js',
5
5
  ],
6
+ ignorePatterns : [
7
+ '**/node_modules/',
8
+ 'coverage/',
9
+ 'dist/',
10
+ ],
6
11
  };
package/CHANGELOG.md CHANGED
@@ -5,6 +5,10 @@ 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
+ ## [4.0.1](../../tags/v4.0.1) - 2024-01-29
9
+ ### Changed
10
+ - Explicitly specify ignores from .gitignore in .eslintrc.js
11
+
8
12
  ## [4.0.0](../../tags/v4.0.0) - 2024-01-16
9
13
  ### Changed
10
14
  - Update project configurations
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anmiles/downloader",
3
- "version": "4.0.0",
3
+ "version": "4.0.1",
4
4
  "description": "Wrapper for downloading data as string, buffer or complex types",
5
5
  "keywords": [
6
6
  "download",
@@ -17,7 +17,7 @@
17
17
  "main": "dist/index.js",
18
18
  "scripts": {
19
19
  "build": "rimraf dist && tsc -p ./tsconfig.build.json",
20
- "lint": "eslint --ext .js,.ts --ignore-path .gitignore .",
20
+ "lint": "eslint --ext .js,.ts .",
21
21
  "lint:fix": "npm run lint -- --fix",
22
22
  "test": "jest --verbose",
23
23
  "test:coverage": "npm test -- --coverage",