Socket
Socket
Sign inDemoInstall

fast-glob

Package Overview
Dependencies
17
Maintainers
1
Versions
43
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 3.0.0 to 3.0.1

11

out/types/index.d.ts
/// <reference types="node" />
import * as fsWalk from '@nodelib/fs.walk';
import * as micromatch from 'micromatch';
export declare type ErrnoException = NodeJS.ErrnoException;

@@ -22,5 +21,11 @@ export declare type Entry = fsWalk.Entry;

export declare type EntryTransformerFunction = (entry: Entry) => EntryItem;
export declare type MicromatchOptions = micromatch.Options & {
export interface MicromatchOptions {
dot?: boolean;
matchBase?: boolean;
nobrace?: boolean;
nocase?: boolean;
noext?: boolean;
noglobstar?: boolean;
posix?: boolean;
};
}
export declare type FileSystemAdapter = fsWalk.FileSystemAdapter;
{
"name": "fast-glob",
"version": "3.0.0",
"version": "3.0.1",
"description": "It's a very fast and efficient glob library for Node.js",

@@ -5,0 +5,0 @@ "license": "MIT",

@@ -82,4 +82,4 @@ # fast-glob

* **Old mode**. Node.js below 10.10 or when the `stats` option is *enabled*.
* **Modern mode**. Node.js 10.10+ and the `stats` option is *disabled*.
* **Old mode**. Node.js below 10.10 or when the [`stats`](#stats) option is *enabled*.
* **Modern mode**. Node.js 10.10+ and the [`stats`](#stats) option is *disabled*.

@@ -432,3 +432,3 @@ The modern mode is faster. Learn more about the [internal mechanism][nodelib_fs_scandir_old_and_modern_modern].

> :1234: [Syntax description][bash_hackers_syntax_expansion_brace] or mode [detailed description][micromatch_braces].
> :1234: [Syntax description][bash_hackers_syntax_expansion_brace] or more [detailed description][micromatch_braces].

@@ -612,3 +612,3 @@ ```js

You cannot use [Uniform Naming Convention (UNC)][unc_path] paths as patterns (due to syntax), but you can use them as `cwd` directory.
You cannot use [Uniform Naming Convention (UNC)][unc_path] paths as patterns (due to syntax), but you can use them as [`cwd`](#cwd) directory.

@@ -615,0 +615,0 @@ ```ts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc