Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 16, 2025

This PR contains the following updates:

Package Change Age Confidence
cpy 8.1.2 -> 12.0.1 age confidence

Release Notes

sindresorhus/cpy (cpy)

v12.0.1

Compare Source


v12.0.0

Compare Source

Breaking
Improvements
  • Add onProgress option 79c6e3a
    • The previous cpy(…).on('progress', …) handler is deprecated
Fixes

v11.1.0

Compare Source

v11.0.1

Compare Source

v11.0.0

Compare Source

Breaking
Improvements
Maintenance
  • This package has a lot of problems and I unfortunately don't have time to fix them. I would recommend against using this package until these problems are resolved. Help welcome (see the issue tracker).

v10.1.0

Compare Source

  • Add file sourcePath and destinationPath to the progress event (#​112) 936710e

v10.0.0

Compare Source

Breaking
Fixes
  • Fix: Make rename function receive filename with extension (#​110) cdb7ed4
    • In v9, it incorrectly received a filename without extension.

v9.0.1

Compare Source

v9.0.0

Compare Source

Breaking
  • This package is now pure ESM. Please read this.
  • Require Node.js 12
Recursive by default
  • parents option was removed
  • to get flat list of files use flat: true option

Example directory structure:

- .github/workflows/main.yml
- .github/funding.yml

Command: cpy('.github/**', 'dest')

Old output:

- dest/funding.yml
- dest/main.yml

New output:

- dest/workflows/main.yml
- dest/main.yml
Recreate old parents: true

Example directory structure:

- .github/workflows/main.yml
- .github/funding.yml

Old:
cpy('.github/**', 'dest', {parents: true})

New:
cpy('.github', 'dest')

Output:

- dest/.github/workglows/main.yml
- dest/.github/funding.yml
Recreate old parents: false

Example directory structure:

- .github/workflows/main.yml
- .github/funding.yml

Old:
cpy('.github/**', 'dest', {parents: false})

New:
cpy('.github', 'dest', {flat: true})

Output:

- dest/main.yml
- dest/funding.yml
Copy all package.json and preserve folder structure

Old:
cpy('node_modules/**/package.json', 'dest', {parents: true})

Old output:

New:
cpy('node_modules/**/package.json', 'dest')

New output:


Configuration

📅 Schedule: Branch creation - Only on Sunday and Saturday ( * * * * 0,6 ) (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/cpy-12.x branch from 480872e to 46a83b8 Compare August 20, 2025 18:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants