Skip to content

Commit

Permalink
release: v0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yizhi996 committed Aug 29, 2022
1 parent 172451a commit 3efa8ef
Show file tree
Hide file tree
Showing 14 changed files with 29 additions and 29 deletions.
Binary file modified iOS/Evoker/Sources/Resources/SDK/evoker-sdk.evpkg
Binary file not shown.
4 changes: 2 additions & 2 deletions packages/bridge/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@evoker/bridge",
"version": "0.10.0",
"version": "0.11.0",
"type": "module",
"description": "evoker js bridge",
"author": "yizhi996",
Expand All @@ -23,7 +23,7 @@
"dist"
],
"dependencies": {
"@evoker/shared": "0.10.0",
"@evoker/shared": "0.11.0",
"vue": "^3.2.37",
"@vue/shared": "^3.2.37"
}
Expand Down
10 changes: 5 additions & 5 deletions packages/bridge/src/api/fs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -619,7 +619,7 @@ class FileSystemManager {
if (errMsg) {
throw new Error(`${event}:fail ${errMsg}`)
}
return stats
return stats as Stats | Stats[]
}

saveFile(options: SaveFileOptions) {
Expand Down Expand Up @@ -733,14 +733,14 @@ class FileSystemManager {
throw new Error(`${event}:fail ${errMsg}`)
}

;(stats as Stats).isFile = () => {
const res = stats as Stats
res.isFile = () => {
return (stats.mode & S_IFREG) === S_IFREG
}
;(stats as Stats).isDirectory = () => {
res.isDirectory = () => {
return (stats.mode & S_IFDIR) === S_IFDIR
}

return stats
return res
}

ftruncate(options: FtruncateOptions) {
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@evoker/cli",
"version": "0.10.0",
"version": "0.11.0",
"description": "evoker cli",
"author": "yizhi996",
"homepage": "https://github.com/yizhi996/evoker/tree/main/packages/cli",
Expand Down
4 changes: 2 additions & 2 deletions packages/create-evoker/template-blank/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
"build": "evoker build"
},
"dependencies": {
"evoker": "^0.10.0",
"evoker": "^0.11.0",
"vue": "^3.2.37"
},
"devDependencies": {
"@evoker/cli": "^0.10.0",
"@evoker/cli": "^0.11.0",
"@vitejs/plugin-vue": "^3.0.1",
"typescript": "^4.7.4",
"vite": "^3.0.2",
Expand Down
4 changes: 2 additions & 2 deletions packages/create-evoker/template-example/iOS/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ use_frameworks!

target 'Runner' do

pod 'Evoker', '~> 0.10.0'
pod 'Evoker', '~> 0.11.0'

pod 'Evoker/Map', '~> 0.10.0'
pod 'Evoker/Map', '~> 0.11.0'

end
4 changes: 2 additions & 2 deletions packages/create-evoker/template-example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
"build": "evoker build"
},
"dependencies": {
"evoker": "^0.10.0",
"evoker": "^0.11.0",
"vue": "^3.2.37",
"pinia": "^2.0.14",
"tailwindcss": "^3.0.15"
},
"devDependencies": {
"@evoker/cli": "^0.10.0",
"@evoker/cli": "^0.11.0",
"@vitejs/plugin-vue": "^3.0.1",
"autoprefixer": "^10.4.2",
"postcss": "^8.4.5",
Expand Down
2 changes: 1 addition & 1 deletion packages/create-evoker/template-iOS/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ use_frameworks!

target 'Runner' do

pod 'Evoker', '~> 0.10.0'
pod 'Evoker', '~> 0.11.0'

end
6 changes: 3 additions & 3 deletions packages/devtools/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@evoker/devtools",
"version": "0.10.0",
"version": "0.11.0",
"description": "evoker devtools",
"author": "yizhi996",
"homepage": "https://github.com/yizhi996/evoker/tree/main/packages/devtools",
Expand All @@ -20,8 +20,8 @@
]
},
"dependencies": {
"@evoker/bridge": "0.10.0",
"@evoker/shared": "0.10.0",
"@evoker/bridge": "0.11.0",
"@evoker/shared": "0.11.0",
"@vue/shared": "^3.2.37",
"hammer-touchemulator": "^0.0.2",
"ws": "^8.8.0"
Expand Down
6 changes: 3 additions & 3 deletions packages/evoker/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "evoker",
"version": "0.10.0",
"version": "0.11.0",
"type": "module",
"description": "The Vue mini program engine",
"author": "yizhi996",
Expand Down Expand Up @@ -29,8 +29,8 @@
},
"dependencies": {
"vue": "^3.2.37",
"@evoker/service": "0.10.0",
"@evoker/webview": "0.10.0"
"@evoker/service": "0.11.0",
"@evoker/webview": "0.11.0"
},
"devDependencies": {
"vite": "^3.0.2"
Expand Down
6 changes: 3 additions & 3 deletions packages/service/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@evoker/service",
"version": "0.10.0",
"version": "0.11.0",
"type": "module",
"description": "evoker jscore runtime",
"author": "yizhi996",
Expand All @@ -20,8 +20,8 @@
]
},
"dependencies": {
"@evoker/bridge": "0.10.0",
"@evoker/shared": "0.10.0",
"@evoker/bridge": "0.11.0",
"@evoker/shared": "0.11.0",
"vue": "^3.2.37",
"@vue/shared": "^3.2.37"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/shared/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@evoker/shared",
"version": "0.10.0",
"version": "0.11.0",
"type": "module",
"description": "evoker shared",
"author": "yizhi996",
Expand Down
2 changes: 1 addition & 1 deletion packages/vue/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@evoker/vue",
"version": "0.10.0",
"version": "0.11.0",
"main": "dist/vue.runtime.global.js",
"types": "dist/vue.d.ts",
"description": "fork vue",
Expand Down
6 changes: 3 additions & 3 deletions packages/webview/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@evoker/webview",
"version": "0.10.0",
"version": "0.11.0",
"description": "evoker webview",
"author": "yizhi996",
"homepage": "https://github.com/yizhi996/evoker/tree/main/packages/webview",
Expand All @@ -21,8 +21,8 @@
"dist"
],
"dependencies": {
"@evoker/bridge": "0.10.0",
"@evoker/shared": "0.10.0",
"@evoker/bridge": "0.11.0",
"@evoker/shared": "0.11.0",
"@tweenjs/tween.js": "^18.6.4",
"@vue/runtime-core": "^3.2.37",
"@vue/shared": "^3.2.37",
Expand Down

0 comments on commit 3efa8ef

Please sign in to comment.