mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-04-29 12:06:01 +02:00
fix(os): correct typo in OsType (#561)
* fix(window): correct typo in OsType * change file * fix fmt check
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
---
|
||||
"os-js": "patch"
|
||||
---
|
||||
|
||||
Fix `macss -> macos` typo in `OsType` type.
|
||||
+2
-2
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user