Skip to content

Commit 9c5e10a

Browse files
chore(release): 13.0.0
1 parent 82c666d commit 9c5e10a

File tree

4 files changed

+24
-6
lines changed

4 files changed

+24
-6
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,24 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
## [13.0.0](https://github.com/webpack-contrib/copy-webpack-plugin/compare/v12.0.2...v13.0.0) (2025-02-27)
6+
7+
8+
### ⚠ BREAKING CHANGES
9+
10+
* switch from `globby` and `fast-glob` to `tinyglobby` ([#795](https://github.com/webpack-contrib/copy-webpack-plugin/issues/795)) ([19fd937](https://github.com/webpack-contrib/copy-webpack-plugin/commit/19fd937705ccb2161619e1e919f0b37b47453368))
11+
12+
For more information please visit [`tinyglobby`](https://github.com/SuperchupuDev/tinyglobby).
13+
14+
The breaking change only affects the developer who used these options - [`gitignore`](https://github.com/sindresorhus/globby#gitignore) and [`ignoreFiles`](https://github.com/sindresorhus/globby#gitignore) in the `globOptions` option.
15+
16+
Please migrate to the [`ignore`](https://github.com/SuperchupuDev/tinyglobby#options) option.
17+
18+
### Bug Fixes
19+
20+
* concurrency option is limited to files now ([#796](https://github.com/webpack-contrib/copy-webpack-plugin/issues/796)) ([d42469c](https://github.com/webpack-contrib/copy-webpack-plugin/commit/d42469cfdc99a81f0f0ba97f6561f0e0db143994))
21+
* the order of patterns provided by the developer is respected
22+
523
### [12.0.2](https://github.com/webpack-contrib/copy-webpack-plugin/compare/v12.0.1...v12.0.2) (2024-01-17)
624

725

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ The use of `context` is illustrated by these [`examples`](#examples).
347347
Type:
348348

349349
```ts
350-
type globOptions = import("globby").Options;
350+
type globOptions = import("tinyglobby").GlobOptions;
351351
```
352352

353353
Default: `undefined`
@@ -943,7 +943,7 @@ module.exports = {
943943
"relative/path/to/file.ext",
944944
{
945945
from: "**/*",
946-
// Terser skip this file for minimization
946+
// Terser skip this file for minification
947947
info: { minimized: true },
948948
},
949949
],
@@ -1330,4 +1330,4 @@ Please take a moment to read our contributing guidelines if you haven't yet done
13301330
[discussion-url]: https://github.com/webpack/webpack/discussions
13311331
[size]: https://packagephobia.now.sh/badge?p=copy-webpack-plugin
13321332
[size-url]: https://packagephobia.now.sh/result?p=copy-webpack-plugin
1333-
[glob-options]: https://github.com/sindresorhus/globby#options
1333+
[glob-options]: https://github.com/SuperchupuDev/tinyglobby#options

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "copy-webpack-plugin",
3-
"version": "12.0.2",
3+
"version": "13.0.0",
44
"description": "Copy files && directories with webpack",
55
"license": "MIT",
66
"repository": "webpack-contrib/copy-webpack-plugin",

0 commit comments

Comments
 (0)