Bump packages to fix linter

This commit is contained in:
Henry Mercer 2023-01-18 20:50:03 +00:00
parent ed9506bbaf
commit 0a11e3fdd9
6063 changed files with 378752 additions and 306784 deletions

14
node_modules/temp-dir/index.d.ts generated vendored
View file

@ -3,16 +3,20 @@ Get the real path of the system temp directory.
@example
```
import * as os from 'os';
import tempDirectory = require('temp-dir');
import temporaryDirectory from 'temp-dir';
console.log(tempDirectory);
console.log(temporaryDirectory);
//=> '/private/var/folders/3x/jf5977fn79jbglr7rk0tq4d00000gn/T'
```
@example
```
import os from 'node:os';
console.log(os.tmpdir());
//=> '/var/folders/3x/jf5977fn79jbglr7rk0tq4d00000gn/T' // <= Symlink
```
*/
declare const tempDirectory: string;
declare const temporaryDirectory: string;
export = tempDirectory;
export default temporaryDirectory;