Skip to content

Commit f23512b

Browse files
fix(extensions): @fastify/type-provider-typebox (#6780)
## What's the problem this PR addresses? <!-- Describe the rationale of your PR. --> <!-- Link all issues that it closes. (Closes/Resolves #xxxx.) --> fastify/fastify-type-provider-typebox#114 ## How did you fix it? <!-- A detailed description of your implementation. --> ## Checklist <!--- Don't worry if you miss something, chores are automatically tested. --> <!--- This checklist exists to help you remember doing the chores when you submit a PR. --> <!--- Put an `x` in all the boxes that apply. --> - [x] I have read the [Contributing Guide](https://yarnpkg.com/advanced/contributing). <!-- See https://yarnpkg.com/advanced/contributing#preparing-your-pr-to-be-released for more details. --> <!-- Check with `yarn version check` and fix with `yarn version check -i` --> - [x] I have set the packages that need to be released for my changes to be effective. <!-- The "Testing chores" workflow validates that your PR follows our guidelines. --> <!-- If it doesn't pass, click on it to see details as to what your PR might be missing. --> - [x] I will check that all automated PR checks pass before the PR gets reviewed.
1 parent e8fbb0c commit f23512b

File tree

2 files changed

+36
-0
lines changed

2 files changed

+36
-0
lines changed

.yarn/versions/624760b9.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
releases:
2+
"@yarnpkg/cli": patch
3+
"@yarnpkg/extensions": patch
4+
"@yarnpkg/plugin-compat": patch
5+
6+
declined:
7+
- "@yarnpkg/plugin-constraints"
8+
- "@yarnpkg/plugin-dlx"
9+
- "@yarnpkg/plugin-essentials"
10+
- "@yarnpkg/plugin-init"
11+
- "@yarnpkg/plugin-interactive-tools"
12+
- "@yarnpkg/plugin-nm"
13+
- "@yarnpkg/plugin-npm-cli"
14+
- "@yarnpkg/plugin-pack"
15+
- "@yarnpkg/plugin-patch"
16+
- "@yarnpkg/plugin-pnp"
17+
- "@yarnpkg/plugin-pnpm"
18+
- "@yarnpkg/plugin-stage"
19+
- "@yarnpkg/plugin-typescript"
20+
- "@yarnpkg/plugin-version"
21+
- "@yarnpkg/plugin-workspace-tools"
22+
- "@yarnpkg/builder"
23+
- "@yarnpkg/core"
24+
- "@yarnpkg/doctor"

packages/yarnpkg-extensions/sources/index.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1000,4 +1000,16 @@ export const packageExtensions: Array<[string, PackageExtensionData]> = [
10001000
csstype: `^3.0.10`,
10011001
},
10021002
}],
1003+
// https://github.com/fastify/fastify-type-provider-typebox/issues/114
1004+
// https://github.com/fastify/fastify-type-provider-typebox/pull/165
1005+
[`@fastify/type-provider-typebox@^5.0.0`, {
1006+
peerDependencies: {
1007+
fastify: `^5.0.0`,
1008+
},
1009+
}],
1010+
[`@fastify/type-provider-typebox@^4.0.0`, {
1011+
peerDependencies: {
1012+
fastify: `^4.0.0`,
1013+
},
1014+
}],
10031015
];

0 commit comments

Comments
 (0)