@vercel/build-utils 8.3.5 → 8.3.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @vercel/build-utils
2
2
 
3
+ ## 8.3.6
4
+
5
+ ### Patch Changes
6
+
7
+ - Remove implicit reliance on `@types/glob` for downstream consumers ([#11914](https://github.com/vercel/vercel/pull/11914))
8
+
3
9
  ## 8.3.5
4
10
 
5
11
  ### Patch Changes
package/dist/fs/glob.d.ts CHANGED
@@ -1,6 +1,10 @@
1
- import vanillaGlob_ from 'glob';
2
1
  import FileFsRef from '../file-fs-ref';
3
- export interface GlobOptions extends vanillaGlob_.IOptions {
2
+ export interface GlobOptions {
3
+ cwd?: string;
4
+ dot?: boolean;
5
+ follow?: boolean;
6
+ ignore?: string | ReadonlyArray<string>;
4
7
  includeDirectories?: boolean;
8
+ nodir?: boolean;
5
9
  }
6
10
  export default function glob(pattern: string, opts: GlobOptions | string, mountpoint?: string): Promise<Record<string, FileFsRef>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vercel/build-utils",
3
- "version": "8.3.5",
3
+ "version": "8.3.6",
4
4
  "license": "Apache-2.0",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.js",