From 2483b40d4c2ec38623fb7fab330e3907fe13dff6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=BF=A0=20/=20green?= Date: Mon, 12 Sep 2022 22:46:41 +0900 Subject: [PATCH] chore(repo): correct READMEs, minimatch to picomatch (#1260) * fix(babel): correct minimatch to picomatch * fix(buble): correct minimatch to picomatch * fix(commonjs): correct minimatch to picomatch * fix(dsv): correct minimatch to picomatch * fix(dynamic-import): correct minimatch to picomatch * docs(graphql): correct minimatch to picomatch * fix(image): correct minimatch to picomatch * fix(inject): correct minimatch to picomatch * fix(replace): correct minimatch to picomatch * fix(strip): correct minimatch to picomatch * fix(sucrase): correct minimatch to picomatch * docs(typescript): correct minimatch to picomatch * fix(url): correct minimatch to picomatch * fix(yaml): correct minimatch to picomatch --- packages/babel/README.md | 4 ++-- packages/babel/types/index.d.ts | 4 ++-- packages/buble/README.md | 4 ++-- packages/buble/types/index.d.ts | 2 +- packages/commonjs/README.md | 8 ++++---- packages/commonjs/types/index.d.ts | 8 ++++---- packages/dsv/types/index.d.ts | 4 ++-- packages/dynamic-import-vars/types/index.d.ts | 4 ++-- packages/graphql/README.md | 4 ++-- packages/image/README.md | 4 ++-- packages/image/types/index.d.ts | 4 ++-- packages/inject/README.md | 4 ++-- packages/inject/index.d.ts | 2 +- packages/replace/README.md | 4 ++-- packages/replace/types/index.d.ts | 2 +- packages/strip/types/index.d.ts | 4 ++-- packages/sucrase/README.md | 4 ++-- packages/sucrase/types/index.d.ts | 4 ++-- packages/typescript/README.md | 4 ++-- packages/url/README.md | 4 ++-- packages/url/types/index.d.ts | 4 ++-- packages/yaml/README.md | 4 ++-- packages/yaml/types/index.d.ts | 4 ++-- 23 files changed, 47 insertions(+), 47 deletions(-) diff --git a/packages/babel/README.md b/packages/babel/README.md index a708981e0..6d079e68a 100644 --- a/packages/babel/README.md +++ b/packages/babel/README.md @@ -84,13 +84,13 @@ All options are as per the [Babel documentation](https://babeljs.io/docs/en/opti Type: `String | RegExp | Array[...String|RegExp]`
-A [minimatch pattern](https://github.com/isaacs/minimatch), or array of patterns, which specifies the files in the build the plugin should _ignore_. When relying on Babel configuration files you can only exclude additional files with this option, you cannot override what you have configured for Babel itself. +A [picomatch pattern](https://github.com/micromatch/picomatch), or array of patterns, which specifies the files in the build the plugin should _ignore_. When relying on Babel configuration files you can only exclude additional files with this option, you cannot override what you have configured for Babel itself. ### `include` Type: `String | RegExp | Array[...String|RegExp]`
-A [minimatch pattern](https://github.com/isaacs/minimatch), or array of patterns, which specifies the files in the build the plugin should operate on. When relying on Babel configuration files you cannot include files already excluded there. +A [picomatch pattern](https://github.com/micromatch/picomatch), or array of patterns, which specifies the files in the build the plugin should operate on. When relying on Babel configuration files you cannot include files already excluded there. ### `filter` diff --git a/packages/babel/types/index.d.ts b/packages/babel/types/index.d.ts index 3ba0195f4..475337fee 100644 --- a/packages/babel/types/index.d.ts +++ b/packages/babel/types/index.d.ts @@ -5,12 +5,12 @@ import * as babelCore from '@babel/core'; export interface RollupBabelInputPluginOptions extends Omit { /** - * A minimatch pattern, or array of patterns, which specifies the files in the build the plugin should operate on. When relying on Babel configuration files you cannot include files already excluded there. + * A picomatch pattern, or array of patterns, which specifies the files in the build the plugin should operate on. When relying on Babel configuration files you cannot include files already excluded there. * @default undefined; */ include?: FilterPattern; /** - * A minimatch pattern, or array of patterns, which specifies the files in the build the plugin should ignore. When relaying on Babel configuration files you can only exclude additional files with this option, you cannot override what you have configured for Babel itself. + * A picomatch pattern, or array of patterns, which specifies the files in the build the plugin should ignore. When relaying on Babel configuration files you can only exclude additional files with this option, you cannot override what you have configured for Babel itself. * @default undefined; */ exclude?: FilterPattern; diff --git a/packages/buble/README.md b/packages/buble/README.md index 69036d46c..a80265195 100644 --- a/packages/buble/README.md +++ b/packages/buble/README.md @@ -56,14 +56,14 @@ Specifies additional [transform options](https://buble.surge.sh/guide/) for the Type: `String` | `Array[...String]`
Default: `null` -A [minimatch pattern](https://github.com/isaacs/minimatch), or array of patterns, which specifies the files in the build the plugin should _ignore_. By default no files are ignored. +A [picomatch pattern](https://github.com/micromatch/picomatch), or array of patterns, which specifies the files in the build the plugin should _ignore_. By default no files are ignored. ### `include` Type: `String` | `Array[...String]`
Default: `null` -A [minimatch pattern](https://github.com/isaacs/minimatch), or array of patterns, which specifies the files in the build the plugin should operate on. By default all files are targeted. +A [picomatch pattern](https://github.com/micromatch/picomatch), or array of patterns, which specifies the files in the build the plugin should operate on. By default all files are targeted. ## Meta diff --git a/packages/buble/types/index.d.ts b/packages/buble/types/index.d.ts index b9ceb887a..81e956f40 100755 --- a/packages/buble/types/index.d.ts +++ b/packages/buble/types/index.d.ts @@ -4,7 +4,7 @@ import { Plugin } from 'rollup'; export interface RollupBubleOptions extends TransformOptions { /** - * A minimatch pattern, or array of patterns, of files that should be + * A picomatch pattern, or array of patterns, of files that should be * processed by this plugin (if omitted, all files are included by default) */ include?: FilterPattern; diff --git a/packages/commonjs/README.md b/packages/commonjs/README.md index 225ed182c..38b8ac637 100644 --- a/packages/commonjs/README.md +++ b/packages/commonjs/README.md @@ -59,9 +59,9 @@ The default value of `"auto"` will only wrap CommonJS files when they are part o `false` will entirely prevent wrapping and hoist all files. This may still work depending on the nature of cyclic dependencies but will often cause problems. -You can also provide a [minimatch pattern](https://github.com/isaacs/minimatch), or array of patterns, to only specify a subset of files which should be wrapped in functions for proper `require` semantics. +You can also provide a [picomatch pattern](https://github.com/micromatch/picomatch), or array of patterns, to only specify a subset of files which should be wrapped in functions for proper `require` semantics. -`"debug"` works like `"auto"` but after bundling, it will display a warning containing a list of ids that have been wrapped which can be used as minimatch pattern for fine-tuning or to avoid the potential race conditions mentioned for `"auto"`. +`"debug"` works like `"auto"` but after bundling, it will display a warning containing a list of ids that have been wrapped which can be used as picomatch pattern for fine-tuning or to avoid the potential race conditions mentioned for `"auto"`. ### `dynamicRequireTargets` @@ -104,14 +104,14 @@ To avoid long paths when using the `dynamicRequireTargets` option, you can use t Type: `string | string[]`
Default: `null` -A [minimatch pattern](https://github.com/isaacs/minimatch), or array of patterns, which specifies the files in the build the plugin should _ignore_. By default, all files with extensions other than those in `extensions` or `".cjs"` are ignored, but you can exclude additional files. See also the `include` option. +A [picomatch pattern](https://github.com/micromatch/picomatch), or array of patterns, which specifies the files in the build the plugin should _ignore_. By default, all files with extensions other than those in `extensions` or `".cjs"` are ignored, but you can exclude additional files. See also the `include` option. ### `include` Type: `string | string[]`
Default: `null` -A [minimatch pattern](https://github.com/isaacs/minimatch), or array of patterns, which specifies the files in the build the plugin should operate on. By default, all files with extension `".cjs"` or those in `extensions` are included, but you can narrow this list by only including specific files. These files will be analyzed and transpiled if either the analysis does not find ES module specific statements or `transformMixedEsModules` is `true`. +A [picomatch pattern](https://github.com/micromatch/picomatch), or array of patterns, which specifies the files in the build the plugin should operate on. By default, all files with extension `".cjs"` or those in `extensions` are included, but you can narrow this list by only including specific files. These files will be analyzed and transpiled if either the analysis does not find ES module specific statements or `transformMixedEsModules` is `true`. ### `extensions` diff --git a/packages/commonjs/types/index.d.ts b/packages/commonjs/types/index.d.ts index febae890d..7edcb7dec 100644 --- a/packages/commonjs/types/index.d.ts +++ b/packages/commonjs/types/index.d.ts @@ -6,7 +6,7 @@ type DefaultIsModuleExportsOption = boolean | 'auto'; interface RollupCommonJSOptions { /** - * A minimatch pattern, or array of patterns, which specifies the files in + * A picomatch pattern, or array of patterns, which specifies the files in * the build the plugin should operate on. By default, all files with * extension `".cjs"` or those in `extensions` are included, but you can * narrow this list by only including specific files. These files will be @@ -16,7 +16,7 @@ interface RollupCommonJSOptions { */ include?: FilterPattern; /** - * A minimatch pattern, or array of patterns, which specifies the files in + * A picomatch pattern, or array of patterns, which specifies the files in * the build the plugin should _ignore_. By default, all files with * extensions other than those in `extensions` or `".cjs"` are ignored, but you * can exclude additional files. See also the `include` option. @@ -88,13 +88,13 @@ interface RollupCommonJSOptions { * work depending on the nature of cyclic dependencies but will often cause * problems. * - * You can also provide a minimatch pattern, or array of patterns, to only + * You can also provide a picomatch pattern, or array of patterns, to only * specify a subset of files which should be wrapped in functions for proper * `require` semantics. * * `"debug"` works like `"auto"` but after bundling, it will display a warning * containing a list of ids that have been wrapped which can be used as - * minimatch pattern for fine-tuning. + * picomatch pattern for fine-tuning. * @default "auto" */ strictRequires?: boolean | FilterPattern; diff --git a/packages/dsv/types/index.d.ts b/packages/dsv/types/index.d.ts index 073278ee0..463ad1ea6 100644 --- a/packages/dsv/types/index.d.ts +++ b/packages/dsv/types/index.d.ts @@ -4,13 +4,13 @@ import { Plugin } from 'rollup'; interface RollupDsvOptions { /** - * A minimatch pattern, or array of patterns, which specifies the files in the build the plugin + * A picomatch pattern, or array of patterns, which specifies the files in the build the plugin * should operate on. * By default all files are targeted. */ include?: FilterPattern; /** - * A minimatch pattern, or array of patterns, which specifies the files in the build the plugin + * A picomatch pattern, or array of patterns, which specifies the files in the build the plugin * should _ignore_. * By default no files are ignored. */ diff --git a/packages/dynamic-import-vars/types/index.d.ts b/packages/dynamic-import-vars/types/index.d.ts index e3b2396c0..30f92892a 100644 --- a/packages/dynamic-import-vars/types/index.d.ts +++ b/packages/dynamic-import-vars/types/index.d.ts @@ -3,13 +3,13 @@ import { Plugin } from 'rollup'; interface RollupDynamicImportVariablesOptions { /** - * A minimatch pattern, or array of patterns, which specifies the files in the build the plugin + * A picomatch pattern, or array of patterns, which specifies the files in the build the plugin * should operate on. * By default all files are targeted. */ include?: FilterPattern; /** - * A minimatch pattern, or array of patterns, which specifies the files in the build the plugin + * A picomatch pattern, or array of patterns, which specifies the files in the build the plugin * should _ignore_. * By default no files are ignored. */ diff --git a/packages/graphql/README.md b/packages/graphql/README.md index 5ef92fdc5..3b08d2a67 100644 --- a/packages/graphql/README.md +++ b/packages/graphql/README.md @@ -86,14 +86,14 @@ query AllHeroes { Type: `String` | `Array[...String]`
Default: `null` -A [minimatch pattern](https://github.com/isaacs/minimatch), or array of patterns, which specifies the files in the build the plugin should _ignore_. By default no files are ignored. +A [picomatch pattern](https://github.com/micromatch/picomatch), or array of patterns, which specifies the files in the build the plugin should _ignore_. By default no files are ignored. ### `include` Type: `String` | `Array[...String]`
Default: `null` -A [minimatch pattern](https://github.com/isaacs/minimatch), or array of patterns, which specifies the files in the build the plugin should operate on. By default all files are targeted. +A [picomatch pattern](https://github.com/micromatch/picomatch), or array of patterns, which specifies the files in the build the plugin should operate on. By default all files are targeted. ## Meta diff --git a/packages/image/README.md b/packages/image/README.md index 4e6debe27..cdd5ec1df 100755 --- a/packages/image/README.md +++ b/packages/image/README.md @@ -75,14 +75,14 @@ document.body.appendChild(logo); Type: `String` | `Array[...String]`
Default: `null` -A [minimatch pattern](https://github.com/isaacs/minimatch), or array of patterns, which specifies the files in the build the plugin should _ignore_. By default no files are ignored. +A [picomatch pattern](https://github.com/micromatch/picomatch), or array of patterns, which specifies the files in the build the plugin should _ignore_. By default no files are ignored. ### `include` Type: `String` | `Array[...String]`
Default: `null` -A [minimatch pattern](https://github.com/isaacs/minimatch), or array of patterns, which specifies the files in the build the plugin should operate on. By default all files are targeted. +A [picomatch pattern](https://github.com/micromatch/picomatch), or array of patterns, which specifies the files in the build the plugin should operate on. By default all files are targeted. ## Meta diff --git a/packages/image/types/index.d.ts b/packages/image/types/index.d.ts index 2c37fddc8..c711570a0 100644 --- a/packages/image/types/index.d.ts +++ b/packages/image/types/index.d.ts @@ -3,13 +3,13 @@ import { Plugin } from 'rollup'; interface RollupImageOptions { /** - * A minimatch pattern, or array of patterns, which specifies the files in the build the plugin + * A picomatch pattern, or array of patterns, which specifies the files in the build the plugin * should operate on. * By default all files are targeted. */ include?: FilterPattern; /** - * A minimatch pattern, or array of patterns, which specifies the files in the build the plugin + * A picomatch pattern, or array of patterns, which specifies the files in the build the plugin * should _ignore_. * By default no files are ignored. */ diff --git a/packages/inject/README.md b/packages/inject/README.md index e97129e24..3ba127f5a 100644 --- a/packages/inject/README.md +++ b/packages/inject/README.md @@ -80,14 +80,14 @@ In addition to the properties and values specified for injecting, users may also Type: `String` | `Array[...String]`
Default: `null` -A [minimatch pattern](https://github.com/isaacs/minimatch), or array of patterns, which specifies the files in the build the plugin should _ignore_. By default no files are ignored. +A [picomatch pattern](https://github.com/micromatch/picomatch), or array of patterns, which specifies the files in the build the plugin should _ignore_. By default no files are ignored. ### `include` Type: `String` | `Array[...String]`
Default: `null` -A [minimatch pattern](https://github.com/isaacs/minimatch), or array of patterns, which specifies the files in the build the plugin should operate on. By default all files are targeted. +A [picomatch pattern](https://github.com/micromatch/picomatch), or array of patterns, which specifies the files in the build the plugin should operate on. By default all files are targeted. ## Meta diff --git a/packages/inject/index.d.ts b/packages/inject/index.d.ts index 93e8e5559..7ec16c5c7 100644 --- a/packages/inject/index.d.ts +++ b/packages/inject/index.d.ts @@ -14,7 +14,7 @@ export interface RollupInjectOptions { | RollupInjectOptions['modules']; /** - * A minimatch pattern, or array of patterns, of files that should be + * A picomatch pattern, or array of patterns, of files that should be * processed by this plugin (if omitted, all files are included by default) */ include?: string | RegExp | ReadonlyArray | null; diff --git a/packages/replace/README.md b/packages/replace/README.md index 853c24eb9..c81dd9be9 100644 --- a/packages/replace/README.md +++ b/packages/replace/README.md @@ -145,14 +145,14 @@ if (false == true) { Type: `String` | `Array[...String]`
Default: `null` -A [minimatch pattern](https://github.com/isaacs/minimatch), or array of patterns, which specifies the files in the build the plugin should _ignore_. By default no files are ignored. +A [picomatch pattern](https://github.com/micromatch/picomatch), or array of patterns, which specifies the files in the build the plugin should _ignore_. By default no files are ignored. ### `include` Type: `String` | `Array[...String]`
Default: `null` -A [minimatch pattern](https://github.com/isaacs/minimatch), or array of patterns, which specifies the files in the build the plugin should operate on. By default all files are targeted. +A [picomatch pattern](https://github.com/micromatch/picomatch), or array of patterns, which specifies the files in the build the plugin should operate on. By default all files are targeted. ### `values` diff --git a/packages/replace/types/index.d.ts b/packages/replace/types/index.d.ts index 1dbb9d04f..f0fa8d10d 100755 --- a/packages/replace/types/index.d.ts +++ b/packages/replace/types/index.d.ts @@ -15,7 +15,7 @@ export interface RollupReplaceOptions { | RollupReplaceOptions['preventAssignment']; /** - * A minimatch pattern, or array of patterns, of files that should be + * A picomatch pattern, or array of patterns, of files that should be * processed by this plugin (if omitted, all files are included by default) */ include?: FilterPattern; diff --git a/packages/strip/types/index.d.ts b/packages/strip/types/index.d.ts index a609a936f..3c4b83fdc 100644 --- a/packages/strip/types/index.d.ts +++ b/packages/strip/types/index.d.ts @@ -3,13 +3,13 @@ import { Plugin } from 'rollup'; interface RollupStripOptions { /** - * A minimatch pattern, or array of patterns, which specifies the files in the build the plugin + * A picomatch pattern, or array of patterns, which specifies the files in the build the plugin * should operate on. * By default all files are targeted. */ include?: FilterPattern; /** - * A minimatch pattern, or array of patterns, which specifies the files in the build the plugin + * A picomatch pattern, or array of patterns, which specifies the files in the build the plugin * should _ignore_. * By default no files are ignored. */ diff --git a/packages/sucrase/README.md b/packages/sucrase/README.md index 2e4432618..d1f519e21 100644 --- a/packages/sucrase/README.md +++ b/packages/sucrase/README.md @@ -67,14 +67,14 @@ The following [Sucrase options](https://github.com/alangpierce/sucrase#transform Type: `String` | `Array[...String]` Default: `null` -A [minimatch pattern](https://github.com/isaacs/minimatch), or array of patterns, which specifies the files in the build the plugin should _ignore_. By default no files are ignored. +A [picomatch pattern](https://github.com/micromatch/picomatch), or array of patterns, which specifies the files in the build the plugin should _ignore_. By default no files are ignored. ### `include` Type: `String` | `Array[...String]` Default: `null` -A [minimatch pattern](https://github.com/isaacs/minimatch), or array of patterns, which specifies the files in the build the plugin should operate on. By default all files are targeted. +A [picomatch pattern](https://github.com/micromatch/picomatch), or array of patterns, which specifies the files in the build the plugin should operate on. By default all files are targeted. ## Meta diff --git a/packages/sucrase/types/index.d.ts b/packages/sucrase/types/index.d.ts index e833c2eb2..5160e4226 100644 --- a/packages/sucrase/types/index.d.ts +++ b/packages/sucrase/types/index.d.ts @@ -14,13 +14,13 @@ interface RollupSucraseOptions | 'disableESTransforms' > { /** - * A minimatch pattern, or array of patterns, which specifies the files in the build the plugin + * A picomatch pattern, or array of patterns, which specifies the files in the build the plugin * should operate on. * By default all files are targeted. */ include?: FilterPattern; /** - * A minimatch pattern, or array of patterns, which specifies the files in the build the plugin + * A picomatch pattern, or array of patterns, which specifies the files in the build the plugin * should _ignore_. * By default no files are ignored. */ diff --git a/packages/typescript/README.md b/packages/typescript/README.md index 8200c62af..047d5d2a6 100644 --- a/packages/typescript/README.md +++ b/packages/typescript/README.md @@ -70,14 +70,14 @@ The following options are unique to `rollup-plugin-typescript`: Type: `String` | `Array[...String]`
Default: `null` -A [minimatch pattern](https://github.com/isaacs/minimatch), or array of patterns, which specifies the files in the build the plugin should _ignore_. By default no files are ignored. +A [picomatch pattern](https://github.com/micromatch/picomatch), or array of patterns, which specifies the files in the build the plugin should _ignore_. By default no files are ignored. ### `include` Type: `String` | `Array[...String]`
Default: `null` -A [minimatch pattern](https://github.com/isaacs/minimatch), or array of patterns, which specifies the files in the build the plugin should operate on. By default all `.ts` and `.tsx` files are targeted. +A [picomatch pattern](https://github.com/micromatch/picomatch), or array of patterns, which specifies the files in the build the plugin should operate on. By default all `.ts` and `.tsx` files are targeted. ### `filterRoot` diff --git a/packages/url/README.md b/packages/url/README.md index d5dfb1b21..2d71dd193 100644 --- a/packages/url/README.md +++ b/packages/url/README.md @@ -57,14 +57,14 @@ console.log(`svg contents: ${svg}`); Type: `String` | `Array[...String]`
Default: `null` -A [minimatch pattern](https://github.com/isaacs/minimatch), or array of patterns, which specifies the files in the build the plugin should _ignore_. By default no files are ignored. +A [picomatch pattern](https://github.com/micromatch/picomatch), or array of patterns, which specifies the files in the build the plugin should _ignore_. By default no files are ignored. ### `include` Type: `String` | `Array[...String]`
Default: `['**/*.svg', '**/*.png', '**/*.jp(e)?g', '**/*.gif', '**/*.webp']` -A [minimatch pattern](https://github.com/isaacs/minimatch), or array of patterns, which specifies the files in the build the plugin should operate on. By default .svg, .png, .jpg, .jpeg, .gif and .webp files are targeted. +A [picomatch pattern](https://github.com/micromatch/picomatch), or array of patterns, which specifies the files in the build the plugin should operate on. By default .svg, .png, .jpg, .jpeg, .gif and .webp files are targeted. ### `limit` diff --git a/packages/url/types/index.d.ts b/packages/url/types/index.d.ts index 6b1945f82..510405065 100644 --- a/packages/url/types/index.d.ts +++ b/packages/url/types/index.d.ts @@ -5,14 +5,14 @@ interface RollupUrlOptions { // Note: the @default tag below uses the zero-width character joiner "‍" to escape the "*/" // https://en.wikipedia.org/wiki/Zero-width_joiner /** - * A minimatch pattern, or array of patterns, which specifies the files in the build the plugin + * A picomatch pattern, or array of patterns, which specifies the files in the build the plugin * should operate on. * By default all files are targeted. * @default ['**‍/*.svg', '**‍/*.png', '**‍/*.jp(e)?g', '**‍/*.gif', '**‍/*.webp'] */ include?: FilterPattern; /** - * A minimatch pattern, or array of patterns, which specifies the files in the build the plugin + * A picomatch pattern, or array of patterns, which specifies the files in the build the plugin * should _ignore_. * By default no files are ignored. */ diff --git a/packages/yaml/README.md b/packages/yaml/README.md index d12707a5b..e0e7f56f9 100644 --- a/packages/yaml/README.md +++ b/packages/yaml/README.md @@ -65,14 +65,14 @@ If `single`, specifies that the target YAML documents contain only one document Type: `String` | `Array[...String]`
Default: `null` -A [minimatch pattern](https://github.com/isaacs/minimatch), or array of patterns, which specifies the files in the build the plugin should _ignore_. By default no files are ignored. +A [picomatch pattern](https://github.com/micromatch/picomatch), or array of patterns, which specifies the files in the build the plugin should _ignore_. By default no files are ignored. ### `include` Type: `String` | `Array[...String]`
Default: `null` -A [minimatch pattern](https://github.com/isaacs/minimatch), or array of patterns, which specifies the files in the build the plugin should operate on. By default all files are targeted. +A [picomatch pattern](https://github.com/micromatch/picomatch), or array of patterns, which specifies the files in the build the plugin should operate on. By default all files are targeted. ### `safe` diff --git a/packages/yaml/types/index.d.ts b/packages/yaml/types/index.d.ts index 9478ac2d2..517710112 100644 --- a/packages/yaml/types/index.d.ts +++ b/packages/yaml/types/index.d.ts @@ -11,13 +11,13 @@ type ValidYamlType = interface RollupYamlOptions { /** - * A minimatch pattern, or array of patterns, which specifies the files in the build the plugin + * A picomatch pattern, or array of patterns, which specifies the files in the build the plugin * should operate on. * By default all files are targeted. */ include?: FilterPattern; /** - * A minimatch pattern, or array of patterns, which specifies the files in the build the plugin + * A picomatch pattern, or array of patterns, which specifies the files in the build the plugin * should _ignore_. * By default no files are ignored. */