@netlify/zip-it-and-ship-it 8.4.0 → 8.4.1

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.
@@ -1,9 +1,9 @@
1
1
  import globFunction from 'glob';
2
- import minimatchFunction from 'minimatch';
2
+ import { MinimatchOptions } from 'minimatch';
3
3
  /**
4
4
  * Both glob and minimatch only support unix style slashes in patterns
5
5
  * For this reason we wrap them and ensure all patters are always unixified
6
6
  * We use `normalize-path` here instead of `unixify` because we do not want to remove drive letters
7
7
  */
8
8
  export declare const glob: (pattern: string, options: globFunction.IOptions) => Promise<string[]>;
9
- export declare const minimatch: (target: string, pattern: string, options?: minimatchFunction.IOptions) => boolean;
9
+ export declare const minimatch: (target: string, pattern: string, options?: MinimatchOptions) => boolean;
@@ -1,6 +1,6 @@
1
1
  import { promisify } from 'util';
2
2
  import globFunction from 'glob';
3
- import minimatchFunction from 'minimatch';
3
+ import { minimatch as minimatchFunction } from 'minimatch';
4
4
  import normalizePath from 'normalize-path';
5
5
  const pGlob = promisify(globFunction);
6
6
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@netlify/zip-it-and-ship-it",
3
- "version": "8.4.0",
3
+ "version": "8.4.1",
4
4
  "description": "Zip it and ship it",
5
5
  "main": "./dist/main.js",
6
6
  "type": "module",
@@ -73,7 +73,7 @@
73
73
  "junk": "^4.0.0",
74
74
  "locate-path": "^7.0.0",
75
75
  "merge-options": "^3.0.4",
76
- "minimatch": "^5.0.0",
76
+ "minimatch": "^6.0.0",
77
77
  "normalize-path": "^3.0.0",
78
78
  "p-map": "^5.0.0",
79
79
  "path-exists": "^5.0.0",