Fix dependabot issues

This commit is contained in:
Andrew Eisenberg 2021-10-21 15:24:20 -07:00
parent c89d9bd8b0
commit 531c6ba7c8
705 changed files with 53406 additions and 20466 deletions

View file

@ -12,7 +12,7 @@ It's used by [AVA](https://www.npmjs.com/package/ava) and
## Installation
```
npm install --save ignore-by-default
npm install ignore-by-default
```
## Usage
@ -22,5 +22,5 @@ return an array of directory names. These are the ones you should ignore.
```js
// ['.git', '.sass_cache', …]
var ignoredDirectories = require('ignore-by-default').directories()
const ignoredDirectories = require('ignore-by-default').directories()
```

View file

@ -1,12 +1,11 @@
'use strict'
exports.directories = function () {
return [
'.git', // Git repository files, see <https://git-scm.com/>
'.nyc_output', // Temporary directory where nyc stores coverage data, see <https://github.com/bcoe/nyc>
'.sass-cache', // Cache folder for node-sass, see <https://github.com/sass/node-sass>
'bower_components', // Where Bower packages are installed, see <http://bower.io/>
'coverage', // Standard output directory for code coverage reports, see <https://github.com/gotwarlost/istanbul>
'node_modules' // Where Node modules are installed, see <https://nodejs.org/>
]
}
exports.directories = () => [
'.git', // Git repository files, see <https://git-scm.com/>
'.log', // Log files emitted by tools such as `tsserver`, see <https://github.com/Microsoft/TypeScript/wiki/Standalone-Server-%28tsserver%29>
'.nyc_output', // Temporary directory where nyc stores coverage data, see <https://github.com/bcoe/nyc>
'.sass-cache', // Cache folder for node-sass, see <https://github.com/sass/node-sass>
'bower_components', // Where Bower packages are installed, see <http://bower.io/>
'coverage', // Standard output directory for code coverage reports, see <https://github.com/gotwarlost/istanbul>
'node_modules' // Where Node modules are installed, see <https://nodejs.org/>
]

View file

@ -1,7 +1,10 @@
{
"name": "ignore-by-default",
"version": "1.0.1",
"version": "2.0.0",
"description": "A list of directories you should ignore by default",
"engines": {
"node": ">=10 <11 || >=12 <13 || >=14"
},
"main": "index.js",
"files": [
"index.js"
@ -28,7 +31,7 @@
},
"homepage": "https://github.com/novemberborn/ignore-by-default#readme",
"devDependencies": {
"figures": "^1.4.0",
"standard": "^6.0.4"
"figures": "^3.2.0",
"standard": "^14.3.4"
}
}