Comparing version 0.9.3 to 0.9.4
{ | ||
"name": "chimee", | ||
"version": "0.9.3", | ||
"version": "0.9.4", | ||
"description": "a video-player aims to bring wonderful experience on browser", | ||
@@ -55,3 +55,3 @@ "main": "lib/index.js", | ||
"devDependencies": { | ||
"@std/esm": "^0.23.0", | ||
"@std/esm": "^0.24.0", | ||
"babel-eslint": "^8.2.2", | ||
@@ -69,5 +69,5 @@ "babel-jest": "^22.4.1", | ||
"chimee-kernel-flv": "^1.4.10", | ||
"chimee-kernel-hls": "^1.2.0", | ||
"chimee-mobile-player": "0.0.5", | ||
"chimee-plugin-center-state": "0.0.8", | ||
"chimee-kernel-hls": "^1.3.0", | ||
"chimee-mobile-player": "^0.1.1", | ||
"chimee-plugin-center-state": "0.0.10", | ||
"chimee-plugin-controlbar": "^0.4.0", | ||
@@ -92,5 +92,5 @@ "chimee-plugin-danmu": "0.0.9", | ||
"pkg-ok": "^2.1.0", | ||
"rollup": "^0.56.2", | ||
"rollup": "^0.56.4", | ||
"rollup-plugin-babel": "^3.0.2", | ||
"rollup-plugin-commonjs": "^8.3.0", | ||
"rollup-plugin-commonjs": "^8.4.0", | ||
"rollup-plugin-flow-no-whitespace": "^1.0.0", | ||
@@ -97,0 +97,0 @@ "rollup-plugin-livereload": "^0.6.0", |
// @flow | ||
import Dispatcher from './dispatcher/index'; | ||
import { isString, isFunction, isElement, isObject, Log } from 'chimee-helper'; | ||
import { isString, isFunction, isElement, isObject, Log, isError } from 'chimee-helper'; | ||
import Plugin from './dispatcher/plugin'; | ||
@@ -104,4 +104,5 @@ import { frozen, autobindClass } from 'toxic-decorators'; | ||
if (Chimee.config.silent) return; | ||
throw error; | ||
if (isError(error)) throw error; | ||
else console.error(error); | ||
} | ||
} |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
877443
18748