Skip to content

Commit

Permalink
Deploy 0.190.0 to xplat
Browse files Browse the repository at this point in the history
Summary: Changelog: [Internal]

Reviewed By: jbrown215

Differential Revision: D40393734

fbshipit-source-id: cc7a5e1fd28512c8141a0f705580a447efcd5575
  • Loading branch information
SamChou19815 authored and facebook-github-bot committed Oct 14, 2022
1 parent 5e6c4b2 commit d49602b
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .flowconfig
Expand Up @@ -42,4 +42,4 @@ untyped-import
untyped-type-import

[version]
^0.189.0
^0.190.0
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -24,7 +24,7 @@
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-relay": "^1.8.3",
"flow-bin": "^0.189.0",
"flow-bin": "^0.190.0",
"glob": "^7.1.1",
"hermes-eslint": "0.8.0",
"invariant": "^2.2.4",
Expand Down
Expand Up @@ -383,6 +383,7 @@ export function getBoundarySchemaFromAST(
null,
);
if (interfaceNode != null) {
// $FlowFixMe[prop-missing]
schema.typegenSchema[interfaceNode.id.name] = {
typeAnnotation: {
type: 'InterfaceDeclarationTypeAnnotation',
Expand Down
1 change: 1 addition & 0 deletions packages/metro-symbolicate/src/Symbolication.js
Expand Up @@ -525,6 +525,7 @@ class SingleMapSymbolicationContext extends SymbolicationContext<SingleMapModule
for (const key of Object.keys(sourceMapJson.x_facebook_segments)) {
// $FlowFixMe[incompatible-use]
const map = sourceMapJson.x_facebook_segments[key];
// $FlowFixMe[prop-missing]
segments[key] = this._initSegment(map);
}
}
Expand Down
1 change: 1 addition & 0 deletions packages/metro/src/DeltaBundler/Serializers/hmrJSBundle.js
Expand Up @@ -82,6 +82,7 @@ function prepareModule(
// Transform the inverse dependency paths to ids.
const inverseDependenciesById = Object.create(null);
Object.keys(inverseDependencies).forEach((path: string) => {
// $FlowFixMe[prop-missing]
inverseDependenciesById[options.createModuleId(path)] = inverseDependencies[
path
].map(options.createModuleId);
Expand Down
1 change: 1 addition & 0 deletions packages/metro/src/lib/getAppendScripts.js
Expand Up @@ -47,6 +47,7 @@ function getAppendScripts<T: number | string>(
const importBundleNamesObject = Object.create(null);
importBundleNames.forEach(absolutePath => {
const bundlePath = path.relative(options.serverRoot, absolutePath);
// $FlowFixMe[prop-missing]
importBundleNamesObject[options.createModuleId(absolutePath)] =
bundlePath.slice(0, -path.extname(bundlePath).length);
});
Expand Down
1 change: 1 addition & 0 deletions packages/metro/src/lib/parseCustomTransformOptions.js
Expand Up @@ -26,6 +26,7 @@ module.exports = function parseCustomTransformOptions(urlObj: {

Object.keys(query).forEach((key: string) => {
if (key.startsWith(PREFIX)) {
// $FlowFixMe[prop-missing]
customTransformOptions[key.substr(PREFIX.length)] = query[key];
}
});
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Expand Up @@ -3848,10 +3848,10 @@ flatted@^3.1.0:
resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.2.tgz#64bfed5cb68fe3ca78b3eb214ad97b63bedce561"
integrity sha512-JaTY/wtrcSyvXJl4IMFHPKyFur1sE9AUqc0QnhOaJ0CxHtAoIV8pYDzeEfAaNEtGkOfq4gr3LBFmdXW5mOQFnA==

flow-bin@^0.189.0:
version "0.189.0"
resolved "https://registry.yarnpkg.com/flow-bin/-/flow-bin-0.189.0.tgz#f334fb434b7c3ade2f410ecd2c9d9b9401c9a174"
integrity sha512-LvbY9EYQujhxNwGAE/ElMunzVV6vwdiooEixEl39XANpNsPh30+uZIDNUczol90pA56T7Idxr8QltxH+YQWdEA==
flow-bin@^0.190.0:
version "0.190.0"
resolved "https://registry.yarnpkg.com/flow-bin/-/flow-bin-0.190.0.tgz#cfc50e1474facf8150232a6c498fe66a6bb75969"
integrity sha512-Qo3bvN3cmGFXsq63ZxcHFZXQDvgx84fCuq8cXuKk5xbvuebBGwMqS+ku/rH+gEkciRrcTYrXqoSzb9b6ShcoJg==

for-in@^1.0.2:
version "1.0.2"
Expand Down

0 comments on commit d49602b

Please sign in to comment.