File tree 2 files changed +41
-4
lines changed
packages/plugin-compat/sources
2 files changed +41
-4
lines changed Original file line number Diff line number Diff line change
1
+ releases :
2
+ " @yarnpkg/cli " : prerelease
3
+ " @yarnpkg/plugin-compat " : prerelease
4
+
5
+ declined :
6
+ - " @yarnpkg/plugin-constraints"
7
+ - " @yarnpkg/plugin-dlx"
8
+ - " @yarnpkg/plugin-essentials"
9
+ - " @yarnpkg/plugin-init"
10
+ - " @yarnpkg/plugin-interactive-tools"
11
+ - " @yarnpkg/plugin-node-modules"
12
+ - " @yarnpkg/plugin-npm-cli"
13
+ - " @yarnpkg/plugin-pack"
14
+ - " @yarnpkg/plugin-patch"
15
+ - " @yarnpkg/plugin-pnp"
16
+ - " @yarnpkg/plugin-stage"
17
+ - " @yarnpkg/plugin-typescript"
18
+ - " @yarnpkg/plugin-version"
19
+ - " @yarnpkg/plugin-workspace-tools"
20
+ - " @yarnpkg/core"
21
+ - " @yarnpkg/doctor"
Original file line number Diff line number Diff line change @@ -6,15 +6,23 @@ export const packageExtensions: Array<[string, any]> = [
6
6
// https://github.com/SamVerschueren/stream-to-observable/pull/5
7
7
[ `@samverschueren/stream-to-observable@*` , {
8
8
peerDependenciesMeta : {
9
- [ `rxjs` ] : `*` ,
10
- [ `zenObservable` ] : `*` ,
9
+ [ `rxjs` ] : {
10
+ optional : true ,
11
+ } ,
12
+ [ `zenObservable` ] : {
13
+ optional : true ,
14
+ } ,
11
15
} ,
12
16
} ] ,
13
17
// https://github.com/sindresorhus/any-observable/pull/25
14
18
[ `any-observable@*` , {
15
19
peerDependenciesMeta : {
16
- [ `rxjs` ] : `*` ,
17
- [ `zenObservable` ] : `*` ,
20
+ [ `rxjs` ] : {
21
+ optional : true ,
22
+ } ,
23
+ [ `zenObservable` ] : {
24
+ optional : true ,
25
+ } ,
18
26
} ,
19
27
} ] ,
20
28
// https://github.com/keymetrics/pm2-io-agent/pull/125
@@ -23,4 +31,12 @@ export const packageExtensions: Array<[string, any]> = [
23
31
[ `debug` ] : `*` ,
24
32
} ,
25
33
} ] ,
34
+ // https://github.com/visionmedia/debug/pull/727
35
+ [ `debug@*` , {
36
+ peerDependenciesMeta : {
37
+ [ `supports-color` ] : {
38
+ optional : true ,
39
+ } ,
40
+ } ,
41
+ } ] ,
26
42
] ;
You can’t perform that action at this time.
0 commit comments