Skip to content
This repository was archived by the owner on Feb 1, 2020. It is now read-only.

Commit 6a98150

Browse files
committed
v0.14.0
- update dependencies - update example
1 parent 8f4d6e1 commit 6a98150

File tree

5 files changed

+593
-623
lines changed

5 files changed

+593
-623
lines changed

examples/simple/dist/bundle.js

+45-45
Original file line numberDiff line numberDiff line change
@@ -17163,9 +17163,9 @@ document.body.appendChild(component())
1716317163

1716417164
// Define as an anonymous module so, through path mapping, it can be
1716517165
// referenced as the "underscore" module.
17166-
!(__WEBPACK_AMD_DEFINE_RESULT__ = function() {
17166+
!(__WEBPACK_AMD_DEFINE_RESULT__ = (function() {
1716717167
return _;
17168-
}.call(exports, __webpack_require__, exports, module),
17168+
}).call(exports, __webpack_require__, exports, module),
1716917169
__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
1717017170
}
1717117171
// Check for `exports` after `define` in case a build optimizer adds it.
@@ -17187,55 +17187,55 @@ document.body.appendChild(component())
1718717187
/* 2 */
1718817188
/***/ (function(module, exports) {
1718917189

17190-
var g;
17191-
17192-
// This works in non-strict mode
17193-
g = (function() {
17194-
return this;
17195-
})();
17196-
17197-
try {
17198-
// This works if eval is allowed (see CSP)
17199-
g = g || Function("return this")() || (1,eval)("this");
17200-
} catch(e) {
17201-
// This works if the window reference is available
17202-
if(typeof window === "object")
17203-
g = window;
17204-
}
17205-
17206-
// g can still be undefined, but nothing to do about it...
17207-
// We return undefined, instead of nothing here, so it's
17208-
// easier to handle this case. if(!global) { ...}
17209-
17210-
module.exports = g;
17190+
var g;
17191+
17192+
// This works in non-strict mode
17193+
g = (function() {
17194+
return this;
17195+
})();
17196+
17197+
try {
17198+
// This works if eval is allowed (see CSP)
17199+
g = g || Function("return this")() || (1,eval)("this");
17200+
} catch(e) {
17201+
// This works if the window reference is available
17202+
if(typeof window === "object")
17203+
g = window;
17204+
}
17205+
17206+
// g can still be undefined, but nothing to do about it...
17207+
// We return undefined, instead of nothing here, so it's
17208+
// easier to handle this case. if(!global) { ...}
17209+
17210+
module.exports = g;
1721117211

1721217212

1721317213
/***/ }),
1721417214
/* 3 */
1721517215
/***/ (function(module, exports) {
1721617216

17217-
module.exports = function(module) {
17218-
if(!module.webpackPolyfill) {
17219-
module.deprecate = function() {};
17220-
module.paths = [];
17221-
// module.parent = undefined by default
17222-
if(!module.children) module.children = [];
17223-
Object.defineProperty(module, "loaded", {
17224-
enumerable: true,
17225-
get: function() {
17226-
return module.l;
17227-
}
17228-
});
17229-
Object.defineProperty(module, "id", {
17230-
enumerable: true,
17231-
get: function() {
17232-
return module.i;
17233-
}
17234-
});
17235-
module.webpackPolyfill = 1;
17236-
}
17237-
return module;
17238-
};
17217+
module.exports = function(module) {
17218+
if(!module.webpackPolyfill) {
17219+
module.deprecate = function() {};
17220+
module.paths = [];
17221+
// module.parent = undefined by default
17222+
if(!module.children) module.children = [];
17223+
Object.defineProperty(module, "loaded", {
17224+
enumerable: true,
17225+
get: function() {
17226+
return module.l;
17227+
}
17228+
});
17229+
Object.defineProperty(module, "id", {
17230+
enumerable: true,
17231+
get: function() {
17232+
return module.i;
17233+
}
17234+
});
17235+
module.webpackPolyfill = 1;
17236+
}
17237+
return module;
17238+
};
1723917239

1724017240

1724117241
/***/ }),

0 commit comments

Comments
 (0)