fix(flipper-static): show default warning message on firing in unknown flags (#715)

Summary:
Passing in unknown options along with `flutter-static` now shows the default warning message as part of the API.

## Changelog
show default warning message on firing in unknown flags
Pull Request resolved: https://github.com/facebook/flipper/pull/715

Test Plan: Tested `yarn start` with unknown arguments. Now raises an error.

Reviewed By: mweststrate

Differential Revision: D19389776

Pulled By: passy

fbshipit-source-id: 2f844e38c8be0e4e53b171b98035338226a0a08a
This commit is contained in:
jamesgeorge007
2020-01-14 04:52:08 -08:00
committed by Facebook Github Bot
parent 16bd10fa15
commit f06c8b8db2

View File

@@ -70,6 +70,7 @@ const argv = yargs
})
.version(global.__VERSION__)
.help()
.strict()
.parse(process.argv.slice(1));
const {config, configPath, flipperDir} = setup(argv);