netlify / framework-info

Framework detection utility
MIT License
137 stars 21 forks source link

chore(deps): update dependency cpy to v9 #723

Closed renovate[bot] closed 2 years ago

renovate[bot] commented 2 years ago

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
cpy ^8.1.0 -> ^9.0.0 age adoption passing confidence

Release Notes

sindresorhus/cpy ### [`v9.0.0`](https://togithub.com/sindresorhus/cpy/releases/v9.0.0) [Compare Source](https://togithub.com/sindresorhus/cpy/compare/v8.1.2...v9.0.0) ##### Breaking - This package is now pure ESM. **Please [read this](https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c).** - 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: ![](https://i.imgur.com/sHOe35T.png) New: `cpy('node_modules/**/package.json', 'dest')` New output: ![](https://i.imgur.com/pYJEK2T.png)

Configuration

πŸ“… Schedule: "before 3am on Monday" (UTC).

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

β™» Rebasing: Renovate will not automatically rebase this PR, because other commits have been found.

πŸ”• Ignore: Close this PR and you won't be reminded about this update again.



This PR has been generated by WhiteSource Renovate. View repository job log here.