Comparing version 3.0.0 to 3.0.1
/// <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 |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
70388
1190
0