Skip to content

Bump cpy from 12.1.0 to 13.2.1 in /js#15

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/js/cpy-13.2.1
Closed

Bump cpy from 12.1.0 to 13.2.1 in /js#15
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/js/cpy-13.2.1

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Mar 1, 2026

Bumps cpy from 12.1.0 to 13.2.1.

Release notes

Sourced from cpy's releases.

v13.2.1

  • Fix negation patterns copying files outside the positive pattern 5e657e4

sindresorhus/cpy@v13.2.0...v13.2.1

v13.2.0

  • Add ignoreExisting option 64a5d30

sindresorhus/cpy@v13.1.0...v13.2.0

v13.1.0

  • Add update option 499d11d

sindresorhus/cpy@v13.0.0...v13.1.0

v13.0.0

Breaking

  • Dotfiles are no longer included by default. Globs now respect the dot option (default false), so files like .hidden are skipped unless explicitly included.
    • If you relied on dotfiles being copied implicitly, either:
      1. Pass dot: true, or
      2. Add explicit dotfile patterns (for example .hidden or **/.hidden).
  • Add rename source/destination objects 3207310
    • The old single parameter rename function still works, but it will be removed in the next major version, so I recommend migrating.
    • The new two-argument form lets you safely mutate the destination while keeping it within the destination directory.
    • Old:
    await cpy("foo.js", "destination", {
    	rename(basename) {
    		return basename.replace("foo", "bar");
    	}
    });
    • New:
    await cpy("foo.js", "destination", {
    	rename(source, destination) {
    		if (source.nameWithoutExtension === "foo") {
    			destination.nameWithoutExtension = "bar";
    		}
    		// destination.name, destination.extension, or destination.path can be updated here
    	}
    });

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [cpy](https://github.com/sindresorhus/cpy) from 12.1.0 to 13.2.1.
- [Release notes](https://github.com/sindresorhus/cpy/releases)
- [Commits](sindresorhus/cpy@v12.1.0...v13.2.1)

---
updated-dependencies:
- dependency-name: cpy
  dependency-version: 13.2.1
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added lang: javascript PRs or issues related to Javascript part: dependencies PRs or issues related to dependencies labels Mar 1, 2026
@timkpaine timkpaine closed this Mar 14, 2026
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Mar 14, 2026

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot dependabot bot deleted the dependabot/npm_and_yarn/js/cpy-13.2.1 branch March 14, 2026 02:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

lang: javascript PRs or issues related to Javascript part: dependencies PRs or issues related to dependencies

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant