Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BREAKING CHANGES: handle publicPath correctly #2671

Merged
merged 10 commits into from
Jul 26, 2020
12 changes: 0 additions & 12 deletions lib/utils/createConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,18 +45,6 @@ function createConfig(config, argv, { port }) {

options.dev = options.dev || {};

if (!options.dev.publicPath) {
options.dev.publicPath =
(firstWpOpt.output && firstWpOpt.output.publicPath) || '';

if (
!isAbsoluteUrl(String(options.dev.publicPath)) &&
options.dev.publicPath[0] !== '/'
) {
options.dev.publicPath = `/${options.dev.publicPath}`;
}
}

if (!options.watchOptions && firstWpOpt.watchOptions) {
options.watchOptions = firstWpOpt.watchOptions;
}
Expand Down
47 changes: 36 additions & 11 deletions lib/utils/routes.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
'use strict';

const { createReadStream } = require('fs');
const { dirname, join } = require('path');
const getFilenameFromUrl = require('webpack-dev-middleware/dist/utils/getFilenameFromUrl')
.default;
const { join } = require('path');
const getPaths = require('webpack-dev-middleware/dist/utils/getPaths').default;

const clientBasePath = join(__dirname, '..', '..', 'client');

function routes(server) {
const app = server.app;
const middleware = server.middleware;
const options = server.options;

app.get('/__webpack_dev_server__/sockjs.bundle.js', (req, res) => {
res.setHeader('Content-Type', 'application/javascript');
Expand All @@ -36,12 +34,12 @@ function routes(server) {
'<!DOCTYPE html><html><head><meta charset="utf-8"/></head><body>'
);

const outputPath = dirname(
getFilenameFromUrl(middleware.context, options.dev.publicPath || '/')
);
const filesystem = middleware.context.outputFileSystem;
const paths = getPaths(middleware.context);

writeDirectory(options.dev.publicPath || '/', outputPath);
for (const { publicPath, outputPath } of paths) {
writeDirectory(publicPath, outputPath);
}

res.end('</body></html>');

Expand All @@ -50,10 +48,37 @@ function routes(server) {

res.write('<ul>');

content.forEach((item) => {
const p = `${basePath}/${item}`;
// sort file data so that files are listed before directories
// this forces Windows to have consistent behavior, as it seems
// to list directories first for the default memfs filesystem
// of webpack-dev-middleware
const fileData = content
.map((item) => {
const p = `${basePath}/${item}`;
return {
item,
isFile: filesystem.statSync(p).isFile(),
path: p,
};
})
.sort((item1, item2) => {
if (item1.isFile && !item2.isFile) {
return -1;
} else if (!item1.isFile && item2.isFile) {
return 1;
// sort alphabetically if both are files or directories
} else if (item1.item < item2.item) {
return -1;
} else if (item2.item < item1.item) {
return 1;
}
return 0;
});

fileData.forEach((data) => {
const { item, isFile, path: p } = data;

if (filesystem.statSync(p).isFile()) {
if (isFile) {
res.write(`<li><a href="${baseUrl + item}">${item}</a></li>`);

if (/\.js$/.test(item)) {
Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
"strip-ansi": "^6.0.0",
"url": "^0.11.0",
"util": "^0.12.3",
"webpack-dev-middleware": "^4.0.0-rc.2",
"webpack-dev-middleware": "^4.0.0-rc.3",
"ws": "^7.3.1",
"yargs": "^13.3.2"
},
Expand Down
3 changes: 3 additions & 0 deletions test/fixtures/multi-public-path-config/bar.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
'use strict';

console.log('Hey.');
3 changes: 3 additions & 0 deletions test/fixtures/multi-public-path-config/foo.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
'use strict';

require('./test.html');
1 change: 1 addition & 0 deletions test/fixtures/multi-public-path-config/test.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
hello
43 changes: 43 additions & 0 deletions test/fixtures/multi-public-path-config/webpack.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
'use strict';

module.exports = [
{
mode: 'development',
context: __dirname,
entry: './foo.js',
output: {
path: __dirname,
filename: 'foo.js',
publicPath: '/bundle1/',
},
node: false,
infrastructureLogging: {
level: 'warn',
},
module: {
rules: [
{
test: /\.html$/,
loader: 'file-loader',
options: {
name: 'path/to/file.html',
},
},
],
},
},
{
mode: 'development',
context: __dirname,
entry: './bar.js',
output: {
path: __dirname,
filename: 'bar.js',
publicPath: '/bundle2/',
},
node: false,
infrastructureLogging: {
level: 'warn',
},
},
];
Loading