Skip to content

Commit 26ef54e

Browse files
authored
Merge branch 'main' into fix/harmonyDTsReg
2 parents 1789b48 + 4746529 commit 26ef54e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/eslint-config-taro/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"eslint": "^8",
3636
"eslint-plugin-react": "^7.33.2",
3737
"eslint-plugin-react-hooks": "^4.4.0",
38-
"eslint-plugin-vue": "^9.17.0"
38+
"eslint-plugin-vue": "^8.0.0"
3939
},
4040
"peerDependenciesMeta": {
4141
"eslint-plugin-react": {

packages/taro-framework-vue3/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"@tarojs/runtime": "workspace:*",
5151
"@tarojs/runner-utils": "workspace:*",
5252
"@tarojs/shared": "workspace:*",
53-
"@vitejs/plugin-vue": "^5",
53+
"@vitejs/plugin-vue": "^4",
5454
"@vitejs/plugin-vue-jsx": "^3",
5555
"vue-loader": "^17.0.0",
5656
"vite": "^4",

packages/taro-h5/src/api/base/weapp/app-event.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const unhandledRejectionListener = (res: PromiseRejectionEvent) => {
1919
let themeMatchMedia: MediaQueryList | null = null
2020
const themeChangeListener = (res: MediaQueryListEvent) => {
2121
themeChangeCallbackManager.trigger({
22-
theme: res.matches ? 'dark' : 'light'
22+
theme: res.matches ? 'light' : 'dark'
2323
})
2424
}
2525

0 commit comments

Comments
 (0)