Skip to content

Commit 27166b3

Browse files
committed
publish 1.0.0
1 parent 9902441 commit 27166b3

File tree

5 files changed

+741
-680
lines changed

5 files changed

+741
-680
lines changed

dist/easyState.js

Lines changed: 33 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -247,9 +247,9 @@ const rawToProxy = new WeakMap()
247247
/***/ (function(module, __webpack_exports__, __webpack_require__) {
248248

249249
"use strict";
250-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__nextTick__ = __webpack_require__(92);
251-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__builtIns__ = __webpack_require__(91);
252-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__store__ = __webpack_require__(93);
250+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__nextTick__ = __webpack_require__(93);
251+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__builtIns_index__ = __webpack_require__(92);
252+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__store__ = __webpack_require__(94);
253253
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__internals__ = __webpack_require__(26);
254254
/* harmony export (immutable) */ __webpack_exports__["b"] = observe;
255255
/* harmony export (immutable) */ __webpack_exports__["c"] = unobserve;
@@ -312,7 +312,7 @@ function observable (obj) {
312312
}
313313

314314
function instrumentObservable (obj) {
315-
const instrument = __WEBPACK_IMPORTED_MODULE_1__builtIns__["a" /* default */].get(Object.getPrototypeOf(obj))
315+
const instrument = __WEBPACK_IMPORTED_MODULE_1__builtIns_index__["a" /* default */].get(Object.getPrototypeOf(obj))
316316
if (typeof instrument === 'function') {
317317
instrument(obj)
318318
}
@@ -415,8 +415,8 @@ function runObserver (observer) {
415415

416416
"use strict";
417417
Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
418-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__nx_js_observer_util__ = __webpack_require__(34);
419-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__autoBind__ = __webpack_require__(86);
418+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__nx_js_observer_util__ = __webpack_require__(86);
419+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__autoBind__ = __webpack_require__(87);
420420
/* harmony export (immutable) */ __webpack_exports__["default"] = easyStateHOC;
421421

422422

@@ -465,6 +465,22 @@ function easyStateHOC (WrappedComp) {
465465
/***/ 86:
466466
/***/ (function(module, __webpack_exports__, __webpack_require__) {
467467

468+
"use strict";
469+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__observer__ = __webpack_require__(34);
470+
/* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return __WEBPACK_IMPORTED_MODULE_0__observer__["a"]; });
471+
/* unused harmony reexport isObservable */
472+
/* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return __WEBPACK_IMPORTED_MODULE_0__observer__["b"]; });
473+
/* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return __WEBPACK_IMPORTED_MODULE_0__observer__["c"]; });
474+
/* unused harmony reexport unqueue */
475+
/* unused harmony reexport exec */
476+
477+
478+
479+
/***/ }),
480+
481+
/***/ 87:
482+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
483+
468484
"use strict";
469485
/* harmony export (immutable) */ __webpack_exports__["a"] = autoBind;
470486
const internals = new Set([
@@ -492,7 +508,7 @@ function autoBind (context, proto) {
492508

493509
/***/ }),
494510

495-
/***/ 87:
511+
/***/ 88:
496512
/***/ (function(module, __webpack_exports__, __webpack_require__) {
497513

498514
"use strict";
@@ -517,7 +533,7 @@ function instrumentMap (target) {
517533

518534
/***/ }),
519535

520-
/***/ 88:
536+
/***/ 89:
521537
/***/ (function(module, __webpack_exports__, __webpack_require__) {
522538

523539
"use strict";
@@ -541,7 +557,7 @@ function instrumentSet (target) {
541557

542558
/***/ }),
543559

544-
/***/ 89:
560+
/***/ 90:
545561
/***/ (function(module, __webpack_exports__, __webpack_require__) {
546562

547563
"use strict";
@@ -559,7 +575,7 @@ function instrumentWeakMap (target) {
559575

560576
/***/ }),
561577

562-
/***/ 90:
578+
/***/ 91:
563579
/***/ (function(module, __webpack_exports__, __webpack_require__) {
564580

565581
"use strict";
@@ -576,14 +592,14 @@ function instrumentWeakSet (target) {
576592

577593
/***/ }),
578594

579-
/***/ 91:
595+
/***/ 92:
580596
/***/ (function(module, __webpack_exports__, __webpack_require__) {
581597

582598
"use strict";
583-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__Map__ = __webpack_require__(87);
584-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__Set__ = __webpack_require__(88);
585-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__WeakMap__ = __webpack_require__(89);
586-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__WeakSet__ = __webpack_require__(90);
599+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__Map__ = __webpack_require__(88);
600+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__Set__ = __webpack_require__(89);
601+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__WeakMap__ = __webpack_require__(90);
602+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__WeakSet__ = __webpack_require__(91);
587603

588604

589605

@@ -601,7 +617,7 @@ function instrumentWeakSet (target) {
601617

602618
/***/ }),
603619

604-
/***/ 92:
620+
/***/ 93:
605621
/***/ (function(module, __webpack_exports__, __webpack_require__) {
606622

607623
"use strict";
@@ -640,7 +656,7 @@ function onTask () {
640656

641657
/***/ }),
642658

643-
/***/ 93:
659+
/***/ 94:
644660
/***/ (function(module, __webpack_exports__, __webpack_require__) {
645661

646662
"use strict";

0 commit comments

Comments
 (0)