/
githubmirror
/
angular-cli
Обзор
Документация
Войти
/
githubmirror
/
angular-cli
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/angular_devkit/build_webpack/src/builders/webpack/index.ts
145 строк
4 KB
Alan Agius
refactor(@angular-devkit/build-webpack): deprecate webpack and webpack-dev-server builders
06 май 2026, 19:48
06 май 2026, 19:48
3d5daa4
Код
Авторство
О чём код?
/** * @license * Copyright Google LLC 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.dev/license */ import { Builder, BuilderContext, BuilderOutput, createBuilder } from '@angular-devkit/architect'; import assert from 'node:assert'; import { resolve as pathResolve } from 'node:path'; import { Observable, from, isObservable, of, switchMap } from 'rxjs'; import type webpack from 'webpack'; import { EmittedFiles, getEmittedFiles, getWebpackConfig } from '../../utils'; import { Schema as RealWebpackBuilderSchema } from './schema'; export type WebpackBuilderSchema = RealWebpackBuilderSchema; export interface WebpackLoggingCallback { (stats: webpack.Stats, config: webpack.Configuration): void; } export interface WebpackFactory { (config: webpack.Configuration): Observable<webpack.Compiler | null> | webpack.Compiler | null; } export type BuildResult = BuilderOutput & { emittedFiles?: EmittedFiles[]; webpackStats?: webpack.StatsCompilation; outputPath: string; }; /** * @deprecated Part of Angular's Webpack support deprecation. Use `@angular/build` APIs instead. * Deprecated since v22. */ export function runWebpack( config: webpack.Configuration, context: BuilderContext, options: { logging?: WebpackLoggingCallback; webpackFactory?: WebpackFactory; shouldProvideStats?: boolean; } = {}, ): Observable<BuildResult> { const { logging: log = (stats, config) => { if (config.stats !== false) { const statsOptions = config.stats === true ? undefined : config.stats; context.logger.info(stats.toString(statsOptions)); } }, shouldProvideStats = true, } = options; const createWebpack = (c: webpack.Configuration) => { if (options.webpackFactory) { const result = options.webpackFactory(c); if (isObservable(result)) { return result; } else { return of(result); } } else { return from(import('webpack').then((mod) => mod.default(c))); } }; return createWebpack({ ...config, watch: false }).pipe( switchMap( (webpackCompiler) => new Observable<BuildResult>((obs) => { assert(webpackCompiler, 'Webpack compiler factory did not return a compiler instance.'); const callback = (err?: Error | null, stats?: webpack.Stats) => { if (err) { return obs.error(err); } if (!stats) { return; } // Log stats. log(stats, config); const statsOptions = typeof config.stats === 'boolean' ? undefined : config.stats; const result = { success: !stats.hasErrors(), webpackStats: shouldProvideStats ? stats.toJson(statsOptions) : undefined, emittedFiles: getEmittedFiles(stats.compilation), outputPath: stats.compilation.outputOptions.path, } as unknown as BuildResult; if (config.watch) { obs.next(result); } else { webpackCompiler.close(() => { obs.next(result); obs.complete(); }); } }; try { if (config.watch) { const watchOptions = config.watchOptions || {}; const watching = webpackCompiler.watch(watchOptions, callback); // Teardown logic. Close the watcher when unsubscribed from. return () => { watching?.close(() => {}); webpackCompiler.close(() => {}); }; } else { webpackCompiler.run(callback); } } catch (err) { if (err) { context.logger.error( `\nAn error occurred during the build:\n${err instanceof Error ? err.stack : err}`, ); } throw err; } }), ), ); } const builder: Builder<WebpackBuilderSchema> = createBuilder<WebpackBuilderSchema>( (options, context) => { context.logger.warn( 'The "@angular-devkit/build-webpack:webpack" builder is deprecated as part of Angular\'s Webpack support deprecation. ' + 'Use "@angular/build" instead.', ); const configPath = pathResolve(context.workspaceRoot, options.webpackConfig); return from(getWebpackConfig(configPath)).pipe( switchMap((config) => runWebpack(config, context)), ); }, ); export default builder;