forked from angular/angular-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex2.ts
More file actions
102 lines (88 loc) · 3.39 KB
/
Copy pathindex2.ts
File metadata and controls
102 lines (88 loc) · 3.39 KB
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
96
97
98
99
100
101
102
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import { BuilderContext, BuilderOutput, createBuilder } from '@angular-devkit/architect/src/index2';
import { getSystemPath, json, normalize, resolve } from '@angular-devkit/core';
import * as net from 'net';
import { Observable, from, of } from 'rxjs';
import { switchMap } from 'rxjs/operators';
import * as webpack from 'webpack';
import * as WebpackDevServer from 'webpack-dev-server';
import { ArchitectPlugin } from '../plugins/architect';
import { WebpackFactory, WebpackLoggingCallback } from '../webpack/index2';
import { Schema as WebpackDevServerBuilderSchema } from './schema';
const webpackMerge = require('webpack-merge');
export type DevServerBuildOutput = BuilderOutput & {
port: number;
family: string;
address: string;
};
export function runWebpackDevServer(
config: webpack.Configuration,
context: BuilderContext,
options: {
devServerConfig?: WebpackDevServer.Configuration,
logging?: WebpackLoggingCallback,
webpackFactory?: WebpackFactory,
} = {},
): Observable<BuilderOutput> {
const createWebpack = options.webpackFactory || (config => of(webpack(config)));
const log: WebpackLoggingCallback = options.logging
|| ((stats, config) => context.logger.info(stats.toString(config.stats)));
config = webpackMerge(config, {
plugins: [
new ArchitectPlugin(context),
],
});
const devServerConfig = options.devServerConfig || config.devServer || {};
if (devServerConfig.stats) {
config.stats = devServerConfig.stats as webpack.Stats.ToStringOptionsObject;
}
// Disable stats reporting by the devserver, we have our own logger.
devServerConfig.stats = false;
return createWebpack(config).pipe(
switchMap(webpackCompiler => new Observable<BuilderOutput>(obs => {
const server = new WebpackDevServer(webpackCompiler, devServerConfig);
let result: DevServerBuildOutput;
webpackCompiler.hooks.done.tap('build-webpack', (stats) => {
// Log stats.
log(stats, config);
obs.next({
...result,
success: !stats.hasErrors(),
} as DevServerBuildOutput);
});
server.listen(
devServerConfig.port === undefined ? 8080 : devServerConfig.port,
devServerConfig.host === undefined ? 'localhost' : devServerConfig.host,
function (this: net.Server, err) {
if (err) {
obs.error(err);
} else {
const address = this.address();
result = {
success: true,
port: typeof address === 'string' ? 0 : address.port,
family: typeof address === 'string' ? '' : address.family,
address: typeof address === 'string' ? address : address.address,
};
}
},
);
// Teardown logic. Close the server when unsubscribed from.
return () => server.close();
})),
);
}
export default createBuilder<
json.JsonObject & WebpackDevServerBuilderSchema, DevServerBuildOutput
>((options, context) => {
const configPath = resolve(normalize(context.workspaceRoot), normalize(options.webpackConfig));
return from(import(getSystemPath(configPath))).pipe(
switchMap((config: webpack.Configuration) => runWebpackDevServer(config, context)),
);
});