Skip to content

Commit

Permalink
[build] 0.2.7
Browse files Browse the repository at this point in the history
what:
why:
how:
  • Loading branch information
toxic-johann committed Aug 9, 2017
1 parent c538746 commit 11f50ee
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 19 deletions.
2 changes: 1 addition & 1 deletion bundle-size/min.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bundle-size/umd.html

Large diffs are not rendered by default.

16 changes: 7 additions & 9 deletions lib/index.browser.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

/**
* chimee v0.2.6
* chimee v0.2.7
* (c) 2017 toxic-johann
* Released under MIT
*/
Expand Down Expand Up @@ -4656,7 +4656,7 @@ module.exports = { "default": preventExtensions$2, __esModule: true };
});

/**
* toxic-decorators v0.3.7
* toxic-decorators v0.3.8
* (c) 2017 toxic-johann
* Released under GPL-3.0
*/
Expand Down Expand Up @@ -4756,11 +4756,9 @@ function compressOneArgFnArray(fns) {
* just a method to call console.warn, maybe i will add some handler on it someday
* @param {anything} args
*/
function warn() {
var _console, _console2;

if (isFunction(console.warn)) return (_console = console).warn.apply(_console, arguments);
(_console2 = console).log.apply(_console2, arguments);
function warn(message) {
if (isFunction(console.warn)) return console.warn(message);
console.log(message);
}

function getOwnKeysFn() {
Expand Down Expand Up @@ -7316,7 +7314,7 @@ var Plugin = (_dec$3 = autobindClass(), _dec$3(_class$3 = function (_VideoWrappe
var _this = _possibleConstructorReturn(this, (Plugin.__proto__ || _Object$getPrototypeOf(Plugin)).call(this));

_this.destroyed = false;
_this.VERSION = '0.2.6';
_this.VERSION = '0.2.7';
_this.__operable = true;
_this.__level = 0;

Expand Down Expand Up @@ -8890,7 +8888,7 @@ var Chimee = (_dec = autobindClass(), _dec(_class = (_class2 = (_temp = _class3
}), _descriptor2 = _applyDecoratedDescriptor(_class2.prototype, 'version', [frozen], {
enumerable: true,
initializer: function initializer() {
return '0.2.6';
return '0.2.7';
}
}), _descriptor3 = _applyDecoratedDescriptor(_class2.prototype, 'config', [frozen], {
enumerable: true,
Expand Down
6 changes: 3 additions & 3 deletions lib/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

/**
* chimee v0.2.6
* chimee v0.2.7
* (c) 2017 toxic-johann
* Released under MIT
*/
Expand Down Expand Up @@ -1406,7 +1406,7 @@ var Plugin = (_dec$3 = toxicDecorators.autobindClass(), _dec$3(_class$3 = functi
var _this = _possibleConstructorReturn(this, (Plugin.__proto__ || _Object$getPrototypeOf(Plugin)).call(this));

_this.destroyed = false;
_this.VERSION = '0.2.6';
_this.VERSION = '0.2.7';
_this.__operable = true;
_this.__level = 0;

Expand Down Expand Up @@ -2980,7 +2980,7 @@ var Chimee = (_dec = toxicDecorators.autobindClass(), _dec(_class = (_class2 = (
}), _descriptor2 = _applyDecoratedDescriptor(_class2.prototype, 'version', [toxicDecorators.frozen], {
enumerable: true,
initializer: function initializer() {
return '0.2.6';
return '0.2.7';
}
}), _descriptor3 = _applyDecoratedDescriptor(_class2.prototype, 'config', [toxicDecorators.frozen], {
enumerable: true,
Expand Down
2 changes: 1 addition & 1 deletion lib/index.min.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions lib/index.mjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

/**
* chimee v0.2.6
* chimee v0.2.7
* (c) 2017 toxic-johann
* Released under MIT
*/
Expand Down Expand Up @@ -1402,7 +1402,7 @@ var Plugin = (_dec$3 = autobindClass(), _dec$3(_class$3 = function (_VideoWrappe
var _this = _possibleConstructorReturn(this, (Plugin.__proto__ || _Object$getPrototypeOf(Plugin)).call(this));

_this.destroyed = false;
_this.VERSION = '0.2.6';
_this.VERSION = '0.2.7';
_this.__operable = true;
_this.__level = 0;

Expand Down Expand Up @@ -2976,7 +2976,7 @@ var Chimee = (_dec = autobindClass(), _dec(_class = (_class2 = (_temp = _class3
}), _descriptor2 = _applyDecoratedDescriptor(_class2.prototype, 'version', [frozen], {
enumerable: true,
initializer: function initializer() {
return '0.2.6';
return '0.2.7';
}
}), _descriptor3 = _applyDecoratedDescriptor(_class2.prototype, 'config', [frozen], {
enumerable: true,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "chimee",
"version": "0.2.6",
"version": "0.2.7",
"description": "a video-player aims to bring wonderful experience on browser",
"main": "lib/index.js",
"module": "lib/index.mjs",
Expand Down

0 comments on commit 11f50ee

Please sign in to comment.