Skip to content

Bump cpy from 12.1.0 to 13.2.1 in /js#88

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

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

Conversation

@dependabot
Copy link
Contributor

@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
@github-actions
Copy link
Contributor

github-actions bot commented Mar 1, 2026

Test Results

2 tests  ±0   2 ✅ ±0   0s ⏱️ ±0s
2 suites ±0   0 💤 ±0 
2 files   ±0   0 ❌ ±0 

Results for commit 4f20365. ± Comparison against base commit 9dc4808.

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.

0 participants