Skip to content

Commit

Permalink
chore: bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
sibiraj-s authored and jantimon committed Oct 8, 2018
1 parent 24e4f10 commit 3934cff
Show file tree
Hide file tree
Showing 14 changed files with 893 additions and 330 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@
/dist/
/coverage/
npm-debug.*.log
yarn.lock
package-lock.json
1 change: 1 addition & 0 deletions docs/template-option.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ By default (if you don't specify any loader in any way) a [fallback lodash loade
]
}
```

Be aware, using `.html` as your template extention may unexpectedly trigger another loader.

## 2) Setting a loader directly for the template
Expand Down
2 changes: 1 addition & 1 deletion examples/appcache/dist/webpack-4/manifest.appcache
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
CACHE MANIFEST
# b399a5e3b098d84ca3a0
# c291a9f1884d47262395

0714810ae3fb211173e2964249507195.png
styles.css
Expand Down
2 changes: 1 addition & 1 deletion examples/chunk-optimization/dist/webpack-4/entryA.js
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@

__webpack_require__(0);
var multiply = __webpack_require__(1);
var concat = __webpack_require__(7);
var concat = __webpack_require__(8);
var h1 = document.createElement('h1');
h1.innerHTML = concat('Hello world from Entry ', multiply(1, 1));
document.body.appendChild(h1);
Expand Down
22 changes: 16 additions & 6 deletions examples/chunk-optimization/dist/webpack-4/entryA~entryB.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,25 @@
/* 0 */
/***/ (function(module, exports, __webpack_require__) {

// style-loader: Adds some css to the DOM by adding a <style> tag

// load the styles
var content = __webpack_require__(3);

if(typeof content === 'string') content = [[module.i, content, '']];
// add the styles to the DOM
var update = __webpack_require__(5)(content, {});

var transform;
var insertInto;



var options = {"hmr":true}

options.transform = transform
options.insertInto = undefined;

var update = __webpack_require__(5)(content, options);

if(content.locals) module.exports = content.locals;
// Hot Module Replacement

if(false) {}

/***/ }),
Expand All @@ -19,7 +29,7 @@ if(false) {}
/* 3 */
/***/ (function(module, exports, __webpack_require__) {

exports = module.exports = __webpack_require__(4)();
exports = module.exports = __webpack_require__(4)(false);
// imports


Expand Down
4 changes: 2 additions & 2 deletions examples/chunk-optimization/dist/webpack-4/entryB.js
Original file line number Diff line number Diff line change
Expand Up @@ -147,14 +147,14 @@
/******/
/******/
/******/ // add entry module to deferred list
/******/ deferredModules.push([8,0,1,2]);
/******/ deferredModules.push([9,0,1,2]);
/******/ // run deferred modules when ready
/******/ return checkDeferredModules();
/******/ })
/************************************************************************/
/******/ ({

/***/ 8:
/***/ 9:
/***/ (function(module, exports, __webpack_require__) {

__webpack_require__(0);
Expand Down
4 changes: 2 additions & 2 deletions examples/chunk-optimization/dist/webpack-4/libMath.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/***/ 1:
/***/ (function(module, exports, __webpack_require__) {

var sum = __webpack_require__(6);
var sum = __webpack_require__(7);
module.exports = function multiply (a, b) {
var m = 0;
for (var i = 0; i < a; i = sum(i, 1)) {
Expand All @@ -15,7 +15,7 @@ module.exports = function multiply (a, b) {

/***/ }),

/***/ 6:
/***/ 7:
/***/ (function(module, exports) {

module.exports = function sum (a, b) {
Expand Down
2 changes: 1 addition & 1 deletion examples/chunk-optimization/dist/webpack-4/libText.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
(window["webpackJsonp"] = window["webpackJsonp"] || []).push([[5],{

/***/ 7:
/***/ 8:
/***/ (function(module, exports) {

module.exports = function concat (a, b) {
Expand Down

0 comments on commit 3934cff

Please sign in to comment.