fix(os): correct typo in OsType (#561)

* fix(window): correct typo in OsType

* change file

* fix fmt check
pull/562/head
Gökçe Merdun 2 years ago committed by GitHub
parent d0c0084859
commit e510f2fe4c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,5 @@
---
"os-js": "patch"
---
Fix `macss -> macos` typo in `OsType` type.

@ -6,8 +6,8 @@
"scripts": {
"build": "pnpm run -r --parallel --filter !plugins-workspace --filter !\"./plugins/*/examples/**\" --filter !\"./examples/*\" build",
"lint": "eslint .",
"format": "prettier --write .",
"format-check": "prettier --check ."
"format": "prettier --write \"./**/*.{cjs,mjs,js,jsx,mts,ts,tsx,html,css,json}\" --ignore-path .prettierignore",
"format-check": "prettier --check \"./**/*.{cjs,mjs,js,jsx,mts,ts,tsx,html,css,json}\" --ignore-path .prettierignore"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "15.1.0",

@ -29,7 +29,7 @@ type Platform =
| "android"
| "windows";
type OsType = "linux" | "windows" | "macss" | "ios" | "android";
type OsType = "linux" | "windows" | "macos" | "ios" | "android";
type Arch =
| "x86"

Loading…
Cancel
Save