Skip to content

Commit

Permalink
[build] 0.10.0-alpha.4
Browse files Browse the repository at this point in the history
  • Loading branch information
toxic-johann committed Apr 26, 2018
1 parent 9b7a1ea commit c70b040
Show file tree
Hide file tree
Showing 9 changed files with 79 additions and 55 deletions.
2 changes: 1 addition & 1 deletion bundle-size/common.html

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

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.

94 changes: 51 additions & 43 deletions lib/index.browser.js
@@ -1,6 +1,6 @@

/**
* chimee v0.10.0-alpha.3
* chimee v0.10.0-alpha.4
* (c) 2017-2018 toxic-johann
* Released under MIT
*/
Expand Down Expand Up @@ -356,13 +356,13 @@
__moduleExports: _cof
});

var cof = ( _cof$1 && _cof ) || _cof$1;
var require$$1$1 = ( _cof$1 && _cof ) || _cof$1;

// fallback for non-array-like ES3 and non-enumerable old V8 strings

// eslint-disable-next-line no-prototype-builtins
var _iobject = Object('z').propertyIsEnumerable(0) ? Object : function (it) {
return cof(it) == 'String' ? it.split('') : Object(it);
return require$$1$1(it) == 'String' ? it.split('') : Object(it);
};

var _iobject$1 = /*#__PURE__*/Object.freeze({
Expand Down Expand Up @@ -452,13 +452,13 @@

var gOPD$1 = ( _objectGopd$1 && _objectGopd ) || _objectGopd$1;

var require$$1$1 = ( _objectSap$1 && _objectSap ) || _objectSap$1;
var require$$1$2 = ( _objectSap$1 && _objectSap ) || _objectSap$1;

// 19.1.2.6 Object.getOwnPropertyDescriptor(O, P)

var $getOwnPropertyDescriptor = gOPD$1.f;

require$$1$1('getOwnPropertyDescriptor', function () {
require$$1$2('getOwnPropertyDescriptor', function () {
return function getOwnPropertyDescriptor(it, key) {
return $getOwnPropertyDescriptor(toIObject(it), key);
};
Expand Down Expand Up @@ -537,12 +537,12 @@

var toObject = ( _toObject$1 && _toObject ) || _toObject$1;

var require$$1$2 = ( _sharedKey$1 && _sharedKey ) || _sharedKey$1;
var require$$1$3 = ( _sharedKey$1 && _sharedKey ) || _sharedKey$1;

// 19.1.2.9 / 15.2.3.2 Object.getPrototypeOf(O)


var IE_PROTO = require$$1$2('IE_PROTO');
var IE_PROTO = require$$1$3('IE_PROTO');
var ObjectProto = Object.prototype;

var _objectGpo = Object.getPrototypeOf || function (O) {
Expand All @@ -564,7 +564,7 @@



require$$1$1('getPrototypeOf', function () {
require$$1$2('getPrototypeOf', function () {
return function getPrototypeOf(it) {
return $getPrototypeOf(toObject(it));
};
Expand Down Expand Up @@ -706,7 +706,7 @@
var require$$0$5 = ( _arrayIncludes$1 && _arrayIncludes ) || _arrayIncludes$1;

var arrayIndexOf = require$$0$5(false);
var IE_PROTO$1 = require$$1$2('IE_PROTO');
var IE_PROTO$1 = require$$1$3('IE_PROTO');

var _objectKeysInternal = function (object, names) {
var O = toIObject(object);
Expand Down Expand Up @@ -786,7 +786,7 @@



var IE_PROTO$2 = require$$1$2('IE_PROTO');
var IE_PROTO$2 = require$$1$3('IE_PROTO');
var Empty = function () { /* empty */ };
var PROTOTYPE$1 = 'prototype';

Expand Down Expand Up @@ -1196,7 +1196,7 @@
// 7.2.2 IsArray(argument)

var _isArray = Array.isArray || function isArray(arg) {
return cof(arg) == 'Array';
return require$$1$1(arg) == 'Array';
};

var _isArray$1 = /*#__PURE__*/Object.freeze({
Expand Down Expand Up @@ -1262,7 +1262,7 @@

var isArray = ( _isArray$1 && _isArray ) || _isArray$1;

var require$$1$3 = ( _objectGopnExt$1 && _objectGopnExt ) || _objectGopnExt$1;
var require$$1$4 = ( _objectGopnExt$1 && _objectGopnExt ) || _objectGopnExt$1;

// ECMAScript 6 symbols shim

Expand Down Expand Up @@ -1292,7 +1292,7 @@

var gOPD$2 = gOPD$1.f;
var dP$1 = $defineProperty.f;
var gOPN$2 = require$$1$3.f;
var gOPN$2 = require$$1$4.f;
var $Symbol = require$$0.Symbol;
var $JSON = require$$0.JSON;
var _stringify = $JSON && $JSON.stringify;
Expand Down Expand Up @@ -1412,7 +1412,7 @@

gOPD$1.f = $getOwnPropertyDescriptor$1;
$defineProperty.f = $defineProperty$1;
gOPN.f = require$$1$3.f = $getOwnPropertyNames;
gOPN.f = require$$1$4.f = $getOwnPropertyNames;
pIE.f = $propertyIsEnumerable;
gOPS.f = $getOwnPropertySymbols;

Expand Down Expand Up @@ -1796,7 +1796,7 @@

var TAG$1 = wks('toStringTag');
// ES3 wrong here
var ARG = cof(function () { return arguments; }()) == 'Arguments';
var ARG = require$$1$1(function () { return arguments; }()) == 'Arguments';

// fallback for IE11 Script Access Denied error
var tryGet = function (it, key) {
Expand All @@ -1811,9 +1811,9 @@
// @@toStringTag case
: typeof (T = tryGet(O = Object(it), TAG$1)) == 'string' ? T
// builtinTag case
: ARG ? cof(O)
: ARG ? require$$1$1(O)
// ES3 arguments fallback
: (B = cof(O)) == 'Object' && typeof O.callee == 'function' ? 'Arguments' : B;
: (B = require$$1$1(O)) == 'Object' && typeof O.callee == 'function' ? 'Arguments' : B;
};

var _classof$1 = /*#__PURE__*/Object.freeze({
Expand Down Expand Up @@ -2018,7 +2018,7 @@



require$$1$1('keys', function () {
require$$1$2('keys', function () {
return function keys(it) {
return getKeys(toObject(it));
};
Expand Down Expand Up @@ -2251,7 +2251,7 @@
delete queue[id];
};
// Node.js 0.8-
if (cof(process) == 'process') {
if (require$$1$1(process) == 'process') {
defer = function (id) {
process.nextTick(ctx(run, id, 1));
};
Expand Down Expand Up @@ -2308,7 +2308,7 @@
var Observer = require$$0.MutationObserver || require$$0.WebKitMutationObserver;
var process$1 = require$$0.process;
var Promise = require$$0.Promise;
var isNode = cof(process$1) == 'process';
var isNode = require$$1$1(process$1) == 'process';

var _microtask = function () {
var head, last, notify;
Expand Down Expand Up @@ -2493,20 +2493,20 @@

var speciesConstructor = ( _speciesConstructor$1 && _speciesConstructor ) || _speciesConstructor$1;

var require$$1$4 = ( _microtask$1 && _microtask ) || _microtask$1;
var require$$1$5 = ( _microtask$1 && _microtask ) || _microtask$1;

var perform = ( _perform$1 && _perform ) || _perform$1;

var promiseResolve = ( _promiseResolve$1 && _promiseResolve ) || _promiseResolve$1;

var redefineAll = ( _redefineAll$1 && _redefineAll ) || _redefineAll$1;

var setSpecies = ( _setSpecies$1 && _setSpecies ) || _setSpecies$1;
var require$$5$1 = ( _setSpecies$1 && _setSpecies ) || _setSpecies$1;

var require$$0$23 = ( _iterDetect$1 && _iterDetect ) || _iterDetect$1;

var task = require$$0$22.set;
var microtask = require$$1$4();
var microtask = require$$1$5();



Expand Down Expand Up @@ -2708,7 +2708,7 @@

$export$1($export$1.G + $export$1.W + $export$1.F * !USE_NATIVE$1, { Promise: $Promise });
setToStringTag($Promise, PROMISE);
setSpecies(PROMISE);
require$$5$1(PROMISE);
Wrapper = require$$1[PROMISE];

// statics
Expand Down Expand Up @@ -2888,10 +2888,10 @@
__moduleExports: _stringTrim
});

var require$$1$5 = ( _stringTrim$1 && _stringTrim ) || _stringTrim$1;
var require$$1$6 = ( _stringTrim$1 && _stringTrim ) || _stringTrim$1;

var $parseFloat = require$$0.parseFloat;
var $trim = require$$1$5.trim;
var $trim = require$$1$6.trim;

var _parseFloat = 1 / $parseFloat(spaces + '-0') !== -Infinity ? function parseFloat(str) {
var string = $trim(String(str), 3);
Expand Down Expand Up @@ -5831,8 +5831,8 @@
var _Object$getOwnPropertySymbols = unwrapExports(getOwnPropertySymbols$2);

// 19.1.2.7 Object.getOwnPropertyNames(O)
require$$1$1('getOwnPropertyNames', function () {
return require$$1$3.f;
require$$1$2('getOwnPropertyNames', function () {
return require$$1$4.f;
});

var $Object$3 = require$$1.Object;
Expand Down Expand Up @@ -6163,7 +6163,7 @@

var weak = ( _collectionWeak$1 && _collectionWeak ) || _collectionWeak$1;

var require$$1$6 = ( _collection$1 && _collection ) || _collection$1;
var require$$1$7 = ( _collection$1 && _collection ) || _collection$1;

var es6_weakMap = createCommonjsModule(function (module) {
var each = createArrayMethod(0);
Expand Down Expand Up @@ -6203,7 +6203,7 @@
};

// 23.3 WeakMap Objects
var $WeakMap = module.exports = require$$1$6(WEAK_MAP, wrapper, methods, weak, true, true);
var $WeakMap = module.exports = require$$1$7(WEAK_MAP, wrapper, methods, weak, true, true);

// IE11 WeakMap frozen keys fix
if (fails(function () { return new $WeakMap().set((Object.freeze || Object)(tmp), 7).get(tmp) != 7; })) {
Expand Down Expand Up @@ -6333,7 +6333,7 @@

var meta = require$$0$10.onFreeze;

require$$1$1('preventExtensions', function ($preventExtensions) {
require$$1$2('preventExtensions', function ($preventExtensions) {
return function preventExtensions(it) {
return $preventExtensions && isObject(it) ? $preventExtensions(meta(it)) : it;
};
Expand Down Expand Up @@ -8679,7 +8679,7 @@
var _this = _possibleConstructorReturn(this, (Plugin.__proto__ || _Object$getPrototypeOf(Plugin)).call(this));

_this.destroyed = false;
_this.VERSION = '0.10.0-alpha.3';
_this.VERSION = '0.10.0-alpha.4';
_this.__operable = true;
_this.__level = 0;

Expand Down Expand Up @@ -9785,7 +9785,7 @@
}, IS_MAP ? 'entries' : 'values', !IS_MAP, true);

// add [@@species], 23.1.2.2, 23.2.2.2
setSpecies(NAME);
require$$5$1(NAME);
}
};
var _collectionStrong_1 = _collectionStrong.getConstructor;
Expand All @@ -9807,7 +9807,7 @@
var MAP = 'Map';

// 23.1 Map Objects
var es6_map = require$$1$6(MAP, function (get) {
var es6_map = require$$1$7(MAP, function (get) {
return function Map() { return get(this, arguments.length > 0 ? arguments[0] : undefined); };
}, {
// 23.1.3.6 Map.prototype.get(key)
Expand Down Expand Up @@ -11720,6 +11720,14 @@
_this.log[key] = !val;
});
}
}, {
key: 'useStyleFullscreen',
get: function get() {
return index.useStyleFirst;
},
set: function set(val) {
index.useStyleFirst = !!val;
}
}]);

function GlobalConfig() {
Expand Down Expand Up @@ -11823,10 +11831,10 @@
__moduleExports: _fails$2
});

var require$$1$7 = ( _fails$3 && _fails$2 ) || _fails$3;
var require$$1$8 = ( _fails$3 && _fails$2 ) || _fails$3;

// Thank's IE8 for his funny defineProperty
var _descriptors$2 = !require$$1$7(function () {
var _descriptors$2 = !require$$1$8(function () {
return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7;
});

Expand All @@ -11853,7 +11861,7 @@

var require$$2$2 = ( _domCreate$3 && _domCreate$2 ) || _domCreate$3;

var _ie8DomDefine$2 = !require$$0$41 && !require$$1$7(function () {
var _ie8DomDefine$2 = !require$$0$41 && !require$$1$8(function () {
return Object.defineProperty(require$$2$2('div'), 'a', { get: function () { return 7; } }).a != 7;
});

Expand Down Expand Up @@ -11967,15 +11975,15 @@

var require$$0$42 = ( _uid$3 && _uid$2 ) || _uid$3;

var require$$1$8 = ( _core$3 && _core$2 ) || _core$3;
var require$$1$9 = ( _core$3 && _core$2 ) || _core$3;

var _redefine$2 = createCommonjsModule(function (module) {
var SRC = require$$0$42('src');
var TO_STRING = 'toString';
var $toString = Function[TO_STRING];
var TPL = ('' + $toString).split(TO_STRING);

require$$1$8.inspectSource = function (it) {
require$$1$9.inspectSource = function (it) {
return $toString.call(it);
};

Expand Down Expand Up @@ -12056,7 +12064,7 @@
var IS_PROTO = type & $export$2.P;
var IS_BIND = type & $export$2.B;
var target = IS_GLOBAL ? require$$0$40 : IS_STATIC ? require$$0$40[name] || (require$$0$40[name] = {}) : (require$$0$40[name] || {})[PROTOTYPE$3];
var exports = IS_GLOBAL ? require$$1$8 : require$$1$8[name] || (require$$1$8[name] = {});
var exports = IS_GLOBAL ? require$$1$9 : require$$1$9[name] || (require$$1$9[name] = {});
var expProto = exports[PROTOTYPE$3] || (exports[PROTOTYPE$3] = {});
var key, own, out, exp;
if (IS_GLOBAL) source = name;
Expand All @@ -12074,7 +12082,7 @@
if (IS_PROTO && expProto[key] != out) expProto[key] = out;
}
};
require$$0$40.core = require$$1$8;
require$$0$40.core = require$$1$9;
// type bitmap
$export$2.F = 1; // forced
$export$2.G = 2; // global
Expand All @@ -12098,7 +12106,7 @@

$export$3($export$3.G, { global: require$$0$40 });

var global$1 = require$$1$8.global;
var global$1 = require$$1$9.global;

var _dec$8, _class$9, _class2$2, _descriptor$2, _descriptor2$1, _descriptor3$1, _init, _init2, _init3, _init4, _init5, _init6, _init7, _init8, _init9, _class3, _temp;

Expand Down Expand Up @@ -12254,7 +12262,7 @@
}), _descriptor2$1 = _applyDecoratedDescriptor$8(_class2$2.prototype, 'version', [frozen], {
enumerable: true,
initializer: function initializer() {
return '0.10.0-alpha.3';
return '0.10.0-alpha.4';
}
}), _descriptor3$1 = _applyDecoratedDescriptor$8(_class2$2.prototype, 'config', [frozen], {
enumerable: true,
Expand Down

0 comments on commit c70b040

Please sign in to comment.