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

2
node_modules/make-dir/index.d.ts generated vendored
View file

@ -6,7 +6,7 @@ declare namespace makeDir {
/**
Directory [permissions](https://x-team.com/blog/file-system-permissions-umask-node-js/).
@default 0o777 & (~process.umask())
@default 0o777
*/
readonly mode?: number;

2
node_modules/make-dir/index.js generated vendored
View file

@ -23,7 +23,7 @@ const checkPath = pth => {
const processOptions = options => {
// https://github.com/sindresorhus/make-dir/issues/18
const defaults = {
mode: 0o777 & (~process.umask()),
mode: 0o777,
fs
};

2
node_modules/make-dir/package.json generated vendored
View file

@ -1,6 +1,6 @@
{
"name": "make-dir",
"version": "3.0.2",
"version": "3.1.0",
"description": "Make a directory and its parents if needed - Think `mkdir -p`",
"license": "MIT",
"repository": "sindresorhus/make-dir",

4
node_modules/make-dir/readme.md generated vendored
View file

@ -10,7 +10,7 @@
- CI-tested on macOS, Linux, and Windows
- Actively maintained
- Doesn't bundle a CLI
- Uses native the `fs.mkdir/mkdirSync` [`recursive` option](https://nodejs.org/dist/latest/docs/api/fs.html#fs_fs_mkdir_path_options_callback) in Node.js >=10.12.0 unless [overridden](#fs)
- Uses the native `fs.mkdir/mkdirSync` [`recursive` option](https://nodejs.org/dist/latest/docs/api/fs.html#fs_fs_mkdir_path_options_callback) in Node.js >=10.12.0 unless [overridden](#fs)
## Install
@ -90,7 +90,7 @@ Type: `object`
##### mode
Type: `integer`\
Default: `0o777 & (~process.umask())`
Default: `0o777`
Directory [permissions](https://x-team.com/blog/file-system-permissions-umask-node-js/).