mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 21:47:20 +00:00
* add prettier and have it format all js code except website: : * trying running prettier check in CI * fix runs on in CI * change CI job name * fix prettier erros and fix CI
9 lines
268 B
JavaScript
9 lines
268 B
JavaScript
const platformOptions = [
|
|
{ label: "All Platforms", value: "" },
|
|
{ label: "macOS", value: "darwin" },
|
|
{ label: "Windows", value: "windows" },
|
|
{ label: "Ubuntu", value: "ubuntu" },
|
|
{ label: "Centos", value: "centos" },
|
|
];
|
|
|
|
export default { platformOptions };
|