Add "MacOS" to supportedDevices (#3648)

Summary:
This is already supported, when running Flipper on Mac, so just need update schema.

One use case for `MacOS`, is to have a static plugin available to users before they launch any app/device. So this can be used as Welcome plugin, Documentation or any other "static" plugin not requiring any other device except the one running Flipper Desktop.

## Changelog

- add `MacOS` to supported devices

Pull Request resolved: https://github.com/facebook/flipper/pull/3648

Test Plan: - Script `lint` should pass.

Reviewed By: antonk52

Differential Revision: D35810577

Pulled By: lblasa

fbshipit-source-id: e1a2948fdf67535d28b68eeab649214b44ebcf9c
This commit is contained in:
Lukas Kurucz
2022-04-22 03:58:36 -07:00
committed by Facebook GitHub Bot
parent 5362649432
commit e7c56045f5

View File

@@ -62,9 +62,9 @@
"type": "object", "type": "object",
"properties": { "properties": {
"os": { "os": {
"description": "Device OS: iOS, Android or Metro. Lack of this property means that all OSes supported.", "description": "Device OS: iOS, Android, Metro, MacOS, Linux, Windows. Lack of this property means that all OSes supported.",
"type": "string", "type": "string",
"enum": ["iOS", "Android", "Metro"] "enum": ["iOS", "Android", "Metro", "MacOS", "Linux", "Windows"]
}, },
"type": { "type": {
"description": "Device type: physical or emulator or dummy. Lack of this property means it supports physical, emulator and dummy devices.", "description": "Device type: physical or emulator or dummy. Lack of this property means it supports physical, emulator and dummy devices.",