1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
'use strict';
const path = require('path');
const Webpack = require('webpack');
const devMiddleware = require('webpack-dev-middleware');
const hotClient = require('webpack-hot-client');
const root = require('app-root-path');
/**
* @method koaDevware
* @desc Middleware for Koa to proxy webpack-dev-middleware
**/
function koaDevware(dev, compiler) {
/**
* @method waitMiddleware
* @desc Provides blocking for the Webpack processes to complete.
**/
function waitMiddleware() {
return new Promise((resolve, reject) => {
dev.waitUntilValid(() => {
resolve(true);
});
function tapFailedHook(comp) {
comp.hooks.failed.tap('KoaWebpack', (error) => {
reject(error);
});
}
if (compiler.compilers) {
for (const child of compiler.compilers) {
tapFailedHook(child);
}
} else {
tapFailedHook(compiler);
}
});
}
return (context, next) => Promise.all([
waitMiddleware(),
new Promise((resolve) => {
dev(context.req, {
end: (content) => {
context.body = content; // eslint-disable-line no-param-reassign
resolve();
},
setHeader: context.set.bind(context),
locals: context.state
}, () => resolve(next()));
})
]);
}
/**
* The entry point for the Koa middleware.
**/
module.exports = function fn(opts) {
const defaults = { dev: {}, hot: {} };
const options = Object.assign(defaults, opts);
let { compiler, config } = options;
if (!compiler) {
if (!config) {
// eslint-disable-next-line import/no-dynamic-require, global-require
config = require(path.join(root.path, 'webpack.config.js'));
}
compiler = Webpack(config);
}
if (!options.dev.publicPath) {
const { publicPath } = compiler.options.output;
if (!publicPath) {
throw new Error('koa-webpack: publicPath must be set on `dev` options, or in a compiler\'s `output` configuration.');
}
options.dev.publicPath = publicPath;
}
const client = options.hot ? hotClient(compiler, options.hot) : null;
const dev = devMiddleware(compiler, options.dev);
return Object.assign(koaDevware(dev, compiler), {
dev,
client,
close(callback) {
const next = client ? () => { client.close(callback); } : callback;
dev.close(next);
}
});
};
|