File tree Expand file tree Collapse file tree 7 files changed +13
-6
lines changed
metro-transform-plugins/src
metro/src/DeltaBundler/Serializers Expand file tree Collapse file tree 7 files changed +13
-6
lines changed Original file line number Diff line number Diff line change @@ -44,4 +44,4 @@ untyped-import
4444untyped-type-import
4545
4646[version]
47- ^0.223.3
47+ ^0.224.0
Original file line number Diff line number Diff line change 2424 "eslint-plugin-prettier" : " ^4.2.1" ,
2525 "eslint-plugin-react" : " ^7.30.1" ,
2626 "eslint-plugin-relay" : " ^1.8.3" ,
27- "flow-bin" : " ^0.223.3 " ,
27+ "flow-bin" : " ^0.224.0 " ,
2828 "glob" : " ^7.1.1" ,
2929 "hermes-eslint" : " 0.18.0" ,
3030 "invariant" : " ^2.2.4" ,
Original file line number Diff line number Diff line change @@ -365,6 +365,7 @@ function getNameForPath(path: NodePath<>): string {
365365 return name;
366366}
367367
368+ // $FlowFixMe[deprecated-type]
368369function isAnyCallExpression ( node : Node ) : boolean % checks {
369370 return (
370371 node . type === 'CallExpression' ||
@@ -373,6 +374,7 @@ function isAnyCallExpression(node: Node): boolean %checks {
373374 ) ;
374375}
375376
377+ // $FlowFixMe[deprecated-type]
376378function isAnyMemberExpression(node: Node): boolean %checks {
377379 return (
378380 node . type === 'MemberExpression' ||
@@ -381,6 +383,7 @@ function isAnyMemberExpression(node: Node): boolean %checks {
381383 ) ;
382384}
383385
386+ // $FlowFixMe[deprecated-type]
384387function isAnyIdentifier(node: Node): boolean %checks {
385388 return isIdentifier ( node ) || isJSXIdentifier ( node ) ;
386389}
Original file line number Diff line number Diff line change @@ -61,13 +61,15 @@ function inlinePlugin(
6161 options . requireName || 'require' ,
6262 ) ;
6363
64+ // $FlowFixMe[deprecated-type]
6465 function isGlobal ( binding : ?Binding ) : boolean % checks {
6566 return ! binding ;
6667 }
6768
6869 const isFlowDeclared = ( binding : Binding ) =>
6970 t . isDeclareVariable ( binding . path ) ;
7071
72+ // $FlowFixMe[deprecated-type]
7173 function isGlobalOrFlowDeclared ( binding : ?Binding ) : boolean % checks {
7274 return isGlobal ( binding ) || isFlowDeclared ( binding ) ;
7375 }
Original file line number Diff line number Diff line change @@ -116,6 +116,7 @@ function createInlinePlatformChecks(
116116 isWrappedModule ,
117117 ) ;
118118
119+ // $FlowFixMe[deprecated-type]
119120 function isGlobal ( binding : mixed ) : boolean % checks {
120121 return ! binding ;
121122 }
Original file line number Diff line number Diff line change @@ -87,6 +87,7 @@ function prepareModule(
8787 const inverseDependenciesById = Object . create ( null ) ;
8888 Object . keys ( inverseDependencies ) . forEach ( ( path : string ) => {
8989 // $FlowFixMe[prop-missing]
90+ // $FlowFixMe[invalid-computed-prop]
9091 inverseDependenciesById [ options . createModuleId ( path ) ] = inverseDependencies [
9192 path
9293 ] . map ( options . createModuleId ) ;
Original file line number Diff line number Diff line change @@ -3392,10 +3392,10 @@ flatted@^3.1.0:
33923392 resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.2.tgz#64bfed5cb68fe3ca78b3eb214ad97b63bedce561"
33933393 integrity sha512-JaTY/wtrcSyvXJl4IMFHPKyFur1sE9AUqc0QnhOaJ0CxHtAoIV8pYDzeEfAaNEtGkOfq4gr3LBFmdXW5mOQFnA==
33943394
3395- flow-bin@^0.223.3 :
3396- version "0.223.3 "
3397- resolved "https://registry.yarnpkg.com/flow-bin/-/flow-bin-0.223.3 .tgz#351cfce2c685ec92769fcbc0bb906497c7ddc061 "
3398- integrity sha512-20jLm49wN6Gfcs+MI/coAeeXK8/Sbb3eSfyEY4KjlusRotLYaYB6Tg1ngh2sCtpbO598oAEawrKDZr0u6jKakQ ==
3395+ flow-bin@^0.224.0 :
3396+ version "0.224.0 "
3397+ resolved "https://registry.yarnpkg.com/flow-bin/-/flow-bin-0.224.0 .tgz#99454c9a37d2c531e831fa1261ad3e38f24edaf1 "
3398+ integrity sha512-dsfQCDzOzNL/6bSQMGSSjTUNU7jpniZzmHQRt1rjD7AROthtXdqAkWQ00Xoifn42xeMaO/YkjlOvjpDA4F5Igw ==
33993399
34003400flow-parser@0.* :
34013401 version "0.213.1"
You can’t perform that action at this time.
0 commit comments