update deps & fix compilation
This commit is contained in:
parent
50147329a4
commit
54b79e7f1e
@ -22,11 +22,11 @@
|
||||
"dependencies": {
|
||||
"child_process": "^1.0.2",
|
||||
"chokidar": "^3.3.1",
|
||||
"commander": "^4.0.1",
|
||||
"commander": "^4.1.0",
|
||||
"keypress": "^0.2.1",
|
||||
"nodejs-websocket": "^1.7.2",
|
||||
"qrcode-terminal": "^0.12.0",
|
||||
"rollup": "^1.28.0",
|
||||
"rollup": "^1.29.0",
|
||||
"shelljs": "^0.8.3",
|
||||
"source-map-merger": "^0.2.0",
|
||||
"typescript": "^3.7.4"
|
||||
|
@ -11,10 +11,10 @@
|
||||
"license": "Apache-2.0",
|
||||
"dependencies": {
|
||||
"@rollup/plugin-commonjs": "^11.0.1",
|
||||
"@rollup/plugin-node-resolve": "^6.1.0",
|
||||
"@rollup/plugin-node-resolve": "^7.0.0",
|
||||
"doric": "file:../doric-js",
|
||||
"reflect-metadata": "^0.1.13",
|
||||
"rollup": "^1.28.0",
|
||||
"rollup": "^1.29.0",
|
||||
"tslib": "^1.10.0",
|
||||
"typescript": "^3.7.4"
|
||||
}
|
||||
|
@ -766,7 +766,7 @@ class Panel {
|
||||
this.context.shader.render(model);
|
||||
}
|
||||
hookBeforeNativeCall() {
|
||||
if (Environment.platform !== 'h5') {
|
||||
if (Environment.platform !== 'web') {
|
||||
this.__root__.clean();
|
||||
for (let map of this.headviews.values()) {
|
||||
for (let v of map.values()) {
|
||||
@ -776,7 +776,7 @@ class Panel {
|
||||
}
|
||||
}
|
||||
hookAfterNativeCall() {
|
||||
if (Environment.platform !== 'h5') {
|
||||
if (Environment.platform !== 'web') {
|
||||
//Here insert a native call to ensure the promise is resolved done.
|
||||
nativeEmpty();
|
||||
if (this.__root__.isDirty()) {
|
||||
|
@ -2225,7 +2225,7 @@ class Panel {
|
||||
this.context.shader.render(model);
|
||||
}
|
||||
hookBeforeNativeCall() {
|
||||
if (Environment.platform !== 'h5') {
|
||||
if (Environment.platform !== 'web') {
|
||||
this.__root__.clean();
|
||||
for (let map of this.headviews.values()) {
|
||||
for (let v of map.values()) {
|
||||
@ -2235,7 +2235,7 @@ class Panel {
|
||||
}
|
||||
}
|
||||
hookAfterNativeCall() {
|
||||
if (Environment.platform !== 'h5') {
|
||||
if (Environment.platform !== 'web') {
|
||||
//Here insert a native call to ensure the promise is resolved done.
|
||||
nativeEmpty();
|
||||
if (this.__root__.isDirty()) {
|
||||
|
2
doric-js/index.d.ts
vendored
2
doric-js/index.d.ts
vendored
@ -21,7 +21,7 @@ declare module 'doric/lib/src/runtime/global' {
|
||||
global {
|
||||
const context: BridgeContext;
|
||||
const Environment: {
|
||||
platform: "Android" | "iOS" | "Qt" | "h5";
|
||||
platform: "Android" | "iOS" | "Qt" | "web";
|
||||
platformVersion: string;
|
||||
appName: string;
|
||||
appVersion: string;
|
||||
|
@ -137,7 +137,7 @@ export class Panel {
|
||||
this.context.shader.render(model);
|
||||
}
|
||||
hookBeforeNativeCall() {
|
||||
if (Environment.platform !== 'h5') {
|
||||
if (Environment.platform !== 'web') {
|
||||
this.__root__.clean();
|
||||
for (let map of this.headviews.values()) {
|
||||
for (let v of map.values()) {
|
||||
@ -147,7 +147,7 @@ export class Panel {
|
||||
}
|
||||
}
|
||||
hookAfterNativeCall() {
|
||||
if (Environment.platform !== 'h5') {
|
||||
if (Environment.platform !== 'web') {
|
||||
//Here insert a native call to ensure the promise is resolved done.
|
||||
nativeEmpty();
|
||||
if (this.__root__.isDirty()) {
|
||||
|
@ -22,11 +22,11 @@
|
||||
},
|
||||
"homepage": "https://github.com/doric-pub/doric#readme",
|
||||
"dependencies": {
|
||||
"@rollup/plugin-node-resolve": "^6.1.0",
|
||||
"@rollup/plugin-node-resolve": "^7.0.0",
|
||||
"@types/ws": "^6.0.4",
|
||||
"dts-bundle": "^0.7.3",
|
||||
"reflect-metadata": "^0.1.13",
|
||||
"rollup": "^1.28.0",
|
||||
"rollup": "^1.29.0",
|
||||
"tslib": "^1.10.0",
|
||||
"typescript": "^3.7.4",
|
||||
"ws": "^7.2.1"
|
||||
|
@ -156,7 +156,7 @@ export abstract class Panel {
|
||||
}
|
||||
|
||||
private hookBeforeNativeCall() {
|
||||
if (Environment.platform !== 'h5') {
|
||||
if (Environment.platform !== 'web') {
|
||||
this.__root__.clean()
|
||||
for (let map of this.headviews.values()) {
|
||||
for (let v of map.values()) {
|
||||
@ -167,7 +167,7 @@ export abstract class Panel {
|
||||
}
|
||||
|
||||
private hookAfterNativeCall() {
|
||||
if (Environment.platform !== 'h5') {
|
||||
if (Environment.platform !== 'web') {
|
||||
//Here insert a native call to ensure the promise is resolved done.
|
||||
nativeEmpty()
|
||||
if (this.__root__.isDirty()) {
|
||||
|
4
doric-web/dist/index.js
vendored
4
doric-web/dist/index.js
vendored
@ -2283,7 +2283,7 @@ class Panel {
|
||||
this.context.shader.render(model);
|
||||
}
|
||||
hookBeforeNativeCall() {
|
||||
if (Environment.platform !== 'h5') {
|
||||
if (Environment.platform !== 'web') {
|
||||
this.__root__.clean();
|
||||
for (let map of this.headviews.values()) {
|
||||
for (let v of map.values()) {
|
||||
@ -2293,7 +2293,7 @@ class Panel {
|
||||
}
|
||||
}
|
||||
hookAfterNativeCall() {
|
||||
if (Environment.platform !== 'h5') {
|
||||
if (Environment.platform !== 'web') {
|
||||
//Here insert a native call to ensure the promise is resolved done.
|
||||
nativeEmpty();
|
||||
if (this.__root__.isDirty()) {
|
||||
|
@ -21,10 +21,10 @@
|
||||
"dependencies": {
|
||||
"@rollup/plugin-commonjs": "^11.0.1",
|
||||
"@rollup/plugin-json": "^4.0.1",
|
||||
"@rollup/plugin-node-resolve": "^6.1.0",
|
||||
"axios": "^0.19.0",
|
||||
"@rollup/plugin-node-resolve": "^7.0.0",
|
||||
"axios": "^0.19.1",
|
||||
"doric": "file:../doric-js",
|
||||
"rollup": "^1.28.0",
|
||||
"rollup": "^1.29.0",
|
||||
"typescript": "^3.7.4"
|
||||
},
|
||||
"publishConfig": {
|
||||
|
Reference in New Issue
Block a user