Skip to content

Commit

Permalink
update lazy-compilation example for webpack-dev-server@4
Browse files Browse the repository at this point in the history
  • Loading branch information
sokra committed Aug 19, 2021
1 parent 4e5e0ac commit 1a06a45
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 51 deletions.
46 changes: 23 additions & 23 deletions examples/lazy-compilation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,33 +12,31 @@ const libraries = {
"all of them": () => import("./all")
};

window.onload = () => {
document.body.style = "font-size: 16pt;";
const pre = document.createElement("pre");
pre.style = "height: 200px; overflow-y: auto";
pre.innerText =
"Click on a button to load the library with import(). The first click triggers a lazy compilation of the module.";
for (const key of Object.keys(libraries)) {
const button = document.createElement("button");
const loadFn = libraries[key];
button.innerText = key;
button.onclick = async () => {
pre.innerText = "Loading " + key + "...";
const result = await loadFn();
pre.innerText = `${key} = {\n ${Object.keys(result).join(",\n ")}\n}`;
};
document.body.appendChild(button);
}
document.body.style = "font-size: 16pt;";
const pre = document.createElement("pre");
pre.style = "height: 200px; overflow-y: auto";
pre.innerText =
"Click on a button to load the library with import(). The first click triggers a lazy compilation of the module.";
for (const key of Object.keys(libraries)) {
const button = document.createElement("button");
button.innerText = "Load more...";
const loadFn = libraries[key];
button.innerText = key;
button.onclick = async () => {
pre.innerText = "Loading more...";
await import("./more");
pre.innerText = "More libraries available.";
pre.innerText = "Loading " + key + "...";
const result = await loadFn();
pre.innerText = `${key} = {\n ${Object.keys(result).join(",\n ")}\n}`;
};
document.body.appendChild(button);
document.body.appendChild(pre);
}
const button = document.createElement("button");
button.innerText = "Load more...";
button.onclick = async () => {
pre.innerText = "Loading more...";
await import("./more");
pre.innerText = "More libraries available.";
};
document.body.appendChild(button);
document.body.appendChild(pre);
```

# webpack.config.js
Expand All @@ -60,7 +58,9 @@ module.exports = {
},
devServer: {
hot: true,
publicPath: "/dist/"
devMiddleware: {
publicPath: "/dist/"
}
},
plugins: [new HotModuleReplacementPlugin()]
};
Expand Down
42 changes: 20 additions & 22 deletions examples/lazy-compilation/example.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,30 +7,28 @@ const libraries = {
"all of them": () => import("./all")
};

window.onload = () => {
document.body.style = "font-size: 16pt;";
const pre = document.createElement("pre");
pre.style = "height: 200px; overflow-y: auto";
pre.innerText =
"Click on a button to load the library with import(). The first click triggers a lazy compilation of the module.";
for (const key of Object.keys(libraries)) {
const button = document.createElement("button");
const loadFn = libraries[key];
button.innerText = key;
button.onclick = async () => {
pre.innerText = "Loading " + key + "...";
const result = await loadFn();
pre.innerText = `${key} = {\n ${Object.keys(result).join(",\n ")}\n}`;
};
document.body.appendChild(button);
}
document.body.style = "font-size: 16pt;";
const pre = document.createElement("pre");
pre.style = "height: 200px; overflow-y: auto";
pre.innerText =
"Click on a button to load the library with import(). The first click triggers a lazy compilation of the module.";
for (const key of Object.keys(libraries)) {
const button = document.createElement("button");
button.innerText = "Load more...";
const loadFn = libraries[key];
button.innerText = key;
button.onclick = async () => {
pre.innerText = "Loading more...";
await import("./more");
pre.innerText = "More libraries available.";
pre.innerText = "Loading " + key + "...";
const result = await loadFn();
pre.innerText = `${key} = {\n ${Object.keys(result).join(",\n ")}\n}`;
};
document.body.appendChild(button);
document.body.appendChild(pre);
}
const button = document.createElement("button");
button.innerText = "Load more...";
button.onclick = async () => {
pre.innerText = "Loading more...";
await import("./more");
pre.innerText = "More libraries available.";
};
document.body.appendChild(button);
document.body.appendChild(pre);
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!DOCTYPE html>
<html>
<head>
<body>
<script src="dist/main.js"></script>
</head>
</body>
</html>
8 changes: 4 additions & 4 deletions examples/lazy-compilation/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ module.exports = {
idleTimeout: 5000
},
experiments: {
lazyCompilation: {
entries: false
}
lazyCompilation: true
},
devServer: {
hot: true,
publicPath: "/dist/"
devMiddleware: {
publicPath: "/dist/"
}
},
plugins: [new HotModuleReplacementPlugin()]
};

0 comments on commit 1a06a45

Please sign in to comment.