Skip to content
This repository has been archived by the owner on Nov 22, 2024. It is now read-only.

Commit

Permalink
Disable .strict() on all tsx yargs scripts
Browse files Browse the repository at this point in the history
Summary:
Some internal jobs started to fail in the same way as GH did. Applied the same patch as in the parent diff.

I suspect the cause is an earlier update of node / bash / other dep? Couldn't really find anything clearly pointing at the problem

Reviewed By: aigoncharov

Differential Revision: D35212673

fbshipit-source-id: c09956137a4b10537718ffa60223cc4e557f41f7
  • Loading branch information
mweststrate authored and facebook-github-bot committed Mar 29, 2022
1 parent 360c52c commit 5b19b37
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion desktop/scripts/build-flipper-server-release.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ const argv = yargs
},
})
.help()
.strict()
.parse(process.argv.slice(1));

if (isFB) {
Expand Down
1 change: 0 additions & 1 deletion desktop/scripts/build-plugin.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ const argv = yargs
},
})
.help()
.strict()
.parse(process.argv.slice(1));

async function buildPlugin() {
Expand Down
1 change: 0 additions & 1 deletion desktop/scripts/build-release.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@ const argv = yargs
},
})
.help()
.strict()
.check((argv) => {
const targetSpecified =
argv.mac ||
Expand Down
1 change: 0 additions & 1 deletion desktop/scripts/tsc-plugins.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ const argv = yargs
},
})
.help()
.strict()
.parse(process.argv.slice(1));

const pluginsDir = path.join(rootDir, argv.dir);
Expand Down

0 comments on commit 5b19b37

Please sign in to comment.