Skip to content

Commit

Permalink
chore: Updating webpack-dev-server (#1646)
Browse files Browse the repository at this point in the history
  • Loading branch information
rschristian committed Jan 31, 2022
1 parent 0125cc3 commit 1d66a66
Show file tree
Hide file tree
Showing 10 changed files with 694 additions and 1,181 deletions.
5 changes: 5 additions & 0 deletions .changeset/clean-kiwis-unite.md
@@ -0,0 +1,5 @@
---
'preact-cli': patch
---

Bumping `webpack-dev-server`
110 changes: 63 additions & 47 deletions packages/cli/lib/lib/webpack/render-html-plugin.js
@@ -1,7 +1,9 @@
const { resolve, join } = require('path');
const os = require('os');
const { existsSync, readFileSync, writeFileSync, mkdirSync } = require('fs');
const HtmlWebpackExcludeAssetsPlugin = require('html-webpack-exclude-assets-plugin');
const {
HtmlWebpackSkipAssetsPlugin,
} = require('html-webpack-skip-assets-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const prerender = require('./prerender');
const createLoadManifest = require('./create-load-manifest');
Expand All @@ -17,8 +19,8 @@ function read(path) {
return readFileSync(resolve(__dirname, path), 'utf-8');
}

module.exports = async function (config) {
const { cwd, dest, isProd, src } = config;
module.exports = async function renderHTMLPlugin(config) {
const { cwd, dest, src } = config;
const inProjectTemplatePath = resolve(src, 'template.html');
let template = defaultTemplate;
if (existsSync(inProjectTemplatePath)) {
Expand All @@ -38,10 +40,7 @@ module.exports = async function (config) {
const headEnd = read('../../resources/head-end.ejs');
const bodyEnd = read('../../resources/body-end.ejs');
content = content
.replace(
/<%[=]?\s+preact\.title\s+%>/,
'<%= htmlWebpackPlugin.options.title %>'
)
.replace(/<%[=]?\s+preact\.title\s+%>/, '<%= cli.title %>')
.replace(/<%\s+preact\.headEnd\s+%>/, headEnd)
.replace(/<%\s+preact\.bodyEnd\s+%>/, bodyEnd);

Expand All @@ -56,53 +55,71 @@ module.exports = async function (config) {
}

const htmlWebpackConfig = values => {
const { url, title, ...routeData } = values;
let { url, title, ...routeData } = values;

title =
title ||
config.title ||
config.manifest.name ||
config.manifest.short_name ||
(config.pkg.name || '').replace(/^@[a-z]\//, '') ||
'Preact App';

// Do not create a folder if the url is for a specific file.
const filename = url.endsWith('.html')
? resolve(dest, url.substring(1))
: resolve(dest, url.substring(1), 'index.html');
return Object.assign(values, {

return {
title,
filename,
template: `!!${require.resolve('ejs-loader')}?esModule=false!${template}`,
minify: isProd && {
collapseWhitespace: true,
removeScriptTypeAttributes: true,
removeRedundantAttributes: true,
removeStyleLinkTypeAttributes: true,
removeComments: true,
templateParameters: (compilation, assets, assetTags, options) => {
let entrypoints = {};
compilation.entrypoints.forEach((entrypoint, name) => {
let entryFiles = entrypoint.getFiles();
entrypoints[name] =
assets.publicPath +
entryFiles.find(file => /\.(m?js)(\?|$)/.test(file));
});

let loadManifest = compilation.assets['push-manifest.json']
? JSON.parse(compilation.assets['push-manifest.json'].source())
: createLoadManifest(
compilation.assets,
config.esm,
compilation.namedChunkGroups
);

return {
cli: {
title,
url,
manifest: config.manifest,
inlineCss: config['inline-css'],
preload: config.preload,
config,
preRenderData: values,
CLI_DATA: { preRenderData: { url, ...routeData } },
ssr: config.prerender ? prerender({ cwd, dest, src }, values) : '',
loadManifest,
entrypoints,
},
htmlWebpackPlugin: {
tags: assetTags,
files: assets,
options: options,
},
};
},
inject: true,
scriptLoading: 'defer',
favicon: existsSync(resolve(src, 'assets/favicon.ico'))
? 'assets/favicon.ico'
: '',
inject: true,
compile: true,
inlineCss: config['inline-css'],
preload: config.preload,
manifest: config.manifest,
title:
title ||
config.title ||
config.manifest.name ||
config.manifest.short_name ||
(config.pkg.name || '').replace(/^@[a-z]\//, '') ||
'Preact App',
excludeAssets: [/(bundle|polyfills)(\..*)?\.js$/],
createLoadManifest: (assets, namedChunkGroups) => {
if (assets['push-manifest.json']) {
return JSON.parse(assets['push-manifest.json'].source());
}
return createLoadManifest(assets, config.esm, namedChunkGroups);
},
config,
url,
ssr() {
return config.prerender && url !== PREACT_FALLBACK_URL
? prerender({ cwd, dest, src }, values)
: '';
},
scriptLoading: 'defer',
CLI_DATA: { preRenderData: { url, ...routeData } },
});
// excludeChunks: ['bundle', 'polyfills']
};
};

let pages = [{ url: '/' }];
Expand Down Expand Up @@ -158,7 +175,7 @@ module.exports = async function (config) {
const resultPages = pages
.map(htmlWebpackConfig)
.map(conf => new HtmlWebpackPlugin(conf))
.concat([new HtmlWebpackExcludeAssetsPlugin()]);
.concat([new HtmlWebpackSkipAssetsPlugin()]);

return config.prerender
? resultPages.concat([
Expand All @@ -170,10 +187,9 @@ module.exports = async function (config) {
// Adds a preact_prerender_data in every folder so that the data could be fetched separately.
class PrerenderDataExtractPlugin {
constructor(page) {
const cliData = page.CLI_DATA || {};
const { url } = cliData.preRenderData || {};
const url = page.url;
this.location_ = url.endsWith('/') ? url : url + '/';
this.data_ = JSON.stringify(cliData.preRenderData || {});
this.data_ = JSON.stringify(page || {});
}
apply(compiler) {
compiler.hooks.emit.tap('PrerenderDataExtractPlugin', compilation => {
Expand Down
8 changes: 2 additions & 6 deletions packages/cli/lib/lib/webpack/run-webpack.js
Expand Up @@ -61,12 +61,8 @@ async function devBuild(env) {

compiler.hooks.failed.tap('CliDevPlugin', rej);

let c = Object.assign({}, config.devServer, {
stats: { colors: true },
});

let server = new DevServer(compiler, c);
server.listen(env.port);
let server = new DevServer(config.devServer, compiler);
server.start();
res(server);
});
}
Expand Down
32 changes: 19 additions & 13 deletions packages/cli/lib/lib/webpack/webpack-client-config.js
Expand Up @@ -163,8 +163,8 @@ function getBabelEsmPlugin(config) {
: '[name].esm.js',
chunkFilename: '[name].chunk.[chunkhash:5].esm.js',
excludedPlugins: ['BabelEsmPlugin', 'InjectManifest'],
beforeStartExecution: (plugins) => {
plugins.forEach((plugin) => {
beforeStartExecution: plugins => {
plugins.forEach(plugin => {
if (
plugin.constructor.name === 'DefinePlugin' &&
plugin.definitions
Expand Down Expand Up @@ -278,9 +278,11 @@ function isDev(config) {
const { cwd, src, refresh } = config;

return {
infrastructureLogging: {
level: 'info',
},
plugins: [
new webpack.NamedModulesPlugin(),
new webpack.HotModuleReplacementPlugin(),
...(refresh ? [new RefreshPlugin()] : []),
new webpack.DefinePlugin({
'process.env.ADD_SW': config.sw,
Expand All @@ -289,22 +291,26 @@ function isDev(config) {
],

devServer: {
inline: true,
hot: true,
compress: true,
publicPath: '/',
contentBase: src,
devMiddleware: {
publicPath: '/',
stats: 'errors-warnings',
},
static: {
directory: src,
watch: {
ignored: [resolve(cwd, 'build'), resolve(cwd, 'node_modules')],
},
},
https: config.https,
port: config.port,
host: process.env.HOST || config.host || '0.0.0.0',
disableHostCheck: true,
allowedHosts: 'all',
historyApiFallback: true,
quiet: true,
clientLogLevel: 'none',
overlay: false,
stats: 'minimal',
watchOptions: {
ignored: [resolve(cwd, 'build'), resolve(cwd, 'node_modules')],
client: {
logging: 'none',
overlay: false,
},
},
};
Expand Down
18 changes: 9 additions & 9 deletions packages/cli/lib/resources/body-end.ejs
@@ -1,18 +1,18 @@
<%= htmlWebpackPlugin.options.ssr() %>
<% if (htmlWebpackPlugin.options.config.prerender === true) { %>
<%= cli.ssr %>
<% if (cli.config.prerender === true) { %>
<script type="__PREACT_CLI_DATA__">
<%= encodeURI(JSON.stringify(htmlWebpackPlugin.options.CLI_DATA)) %>
<%= encodeURI(JSON.stringify(cli.CLI_DATA)) %>
</script>
<% } %>
<% if (webpack.assets.filter(entry => entry.name.match(/bundle(\.\w{5})?.esm.js$/)).length > 0) { %>
<script crossorigin="anonymous" src="<%= htmlWebpackPlugin.files.publicPath %><%= webpack.assets.filter(entry => entry.name.match(/bundle(\.\w{5})?.esm.js$/))[0].name %>" type="module"></script>
<% if (htmlWebpackPlugin.files.js.filter(entry => entry.match(/bundle(\.\w{5})?.esm.js$/)).length > 0) { %>
<script crossorigin="anonymous" src="<%= htmlWebpackPlugin.files.js.filter(entry => entry.match(/bundle(\.\w{5})?.esm.js$/))[0] %>" type="module"></script>
<%
/*Fetch and Promise polyfills are not needed for browsers that support type=module
Please re-evaluate below line if adding more polyfills.*/
%>
<script nomodule src="<%= htmlWebpackPlugin.files.chunks["polyfills"].entry %>"></script>
<script nomodule defer src="<%= htmlWebpackPlugin.files.chunks['bundle'].entry %>"></script>
<script nomodule src="<%= cli.entrypoints['polyfills'] %>"></script>
<script nomodule defer src="<%= cli.entrypoints['bundle'] %>"></script>
<% } else { %>
<script <%= htmlWebpackPlugin.options.scriptLoading %> src="<%= htmlWebpackPlugin.files.chunks['bundle'].entry %>"></script>
<script nomodule src="<%= htmlWebpackPlugin.files.chunks["polyfills"].entry %>"></script>
<script <%= htmlWebpackPlugin.options.scriptLoading %> src="<%= cli.entrypoints['bundle'] %>"></script>
<script nomodule src="<%= cli.entrypoints['polyfills'] %>"></script>
<% } %>
11 changes: 5 additions & 6 deletions packages/cli/lib/resources/head-end.ejs
@@ -1,11 +1,10 @@
<link rel="manifest" href="<%= htmlWebpackPlugin.files.publicPath %>manifest.json">
<% if (htmlWebpackPlugin.options.manifest.theme_color) { %>
<meta name="theme-color" content="<%= htmlWebpackPlugin.options.manifest.theme_color %>">
<% if (cli.manifest.theme_color) { %>
<meta name="theme-color" content="<%= cli.manifest.theme_color %>">
<% } %>
<% const loadManifest = htmlWebpackPlugin.options.createLoadManifest(compilation.assets, webpack.namedChunkGroups);%>
<% const filesRegexp = htmlWebpackPlugin.options.inlineCss ? /\.(chunk\.\w{5}\.css|js)$/ : /\.(css|js)$/;%>
<% for (const file in loadManifest[htmlWebpackPlugin.options.url]) { %>
<% if (htmlWebpackPlugin.options.preload && file && file.match(filesRegexp)) { %>
<% const filesRegexp = cli.inlineCss ? /\.(chunk\.\w{5}\.css|js)$/ : /\.(css|js)$/;%>
<% for (const file in cli.loadManifest[cli.url]) { %>
<% if (cli.preload && file && file.match(filesRegexp)) { %>
<% /* crossorigin for main bundle as that is loaded from `<script type=module` tag, other lazy loaded bundles are from webpack so its not needed */ %>
<link rel="preload" href="<%= htmlWebpackPlugin.files.publicPath + file %>" as="<%= file.match(/\.css$/)?'style':'script' %>" <%= file.match(/bundle\.\w{5}\.esm\.js$/)?'crossorigin="anonymous"':'' %>>
<% } %>
Expand Down
8 changes: 4 additions & 4 deletions packages/cli/package.json
Expand Up @@ -92,7 +92,7 @@
"compression-webpack-plugin": "^6.0.4",
"console-clear": "^1.0.0",
"copy-webpack-plugin": "^6.2.1",
"critters-webpack-plugin": "^2.5.0",
"critters-webpack-plugin": "^3.0.0",
"cross-spawn-promise": "^0.10.1",
"css-loader": "^5.2.4",
"ejs-loader": "^0.5.0",
Expand All @@ -103,8 +103,8 @@
"get-port": "^5.0.0",
"gittar": "^0.1.0",
"glob": "^7.1.4",
"html-webpack-exclude-assets-plugin": "0.0.7",
"html-webpack-plugin": "^3.2.0",
"html-webpack-skip-assets-plugin": "1.0.3",
"html-webpack-plugin": "^4.5.2",
"ip": "^1.1.5",
"isomorphic-unfetch": "^3.1.0",
"kleur": "^4.1.4",
Expand Down Expand Up @@ -136,7 +136,7 @@
"validate-npm-package-name": "^3.0.0",
"webpack": "^4.38.0",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-dev-server": "^3.11.2",
"webpack-dev-server": "^4.7.3",
"webpack-fix-style-only-entries": "^0.6.1",
"webpack-merge": "^5.3.0",
"webpack-plugin-replace": "^1.2.0",
Expand Down
6 changes: 2 additions & 4 deletions packages/cli/tests/subjects/custom-template/template.html
Expand Up @@ -6,9 +6,7 @@
</head>
<body>
<h1>Guess what</h1>
<%= htmlWebpackPlugin.options.ssr({
url: '/'
}) %>
<script defer src="<%= htmlWebpackPlugin.files.chunks['bundle'].entry %>"></script>
<%= cli.ssr %>
<script defer src="<%= cli.entrypoints['bundle'] %>"></script>
</body>
</html>
8 changes: 3 additions & 5 deletions packages/cli/tests/subjects/custom-webpack/template.html
Expand Up @@ -2,13 +2,11 @@
<html lang="en">
<head>
<meta charset="utf-8">
<title><%= htmlWebpackPlugin.options.title %></title>
<title><%= cli.title %></title>
</head>
<body>
<h1>Guess what</h1>
<%= htmlWebpackPlugin.options.ssr({
url: '/'
}) %>
<script defer src="<%= htmlWebpackPlugin.files.chunks['bundle'].entry %>"></script>
<%= cli.ssr %>
<script defer src="<%= cli.entrypoints['bundle'] %>"></script>
</body>
</html>

0 comments on commit 1d66a66

Please sign in to comment.