File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
packages/angular_devkit/build_angular/src/tools/esbuild Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ import { allowMangle } from '../../utils/environment-options';
1515import { SourceFileCache , createCompilerPlugin } from './angular/compiler-plugin' ;
1616import { createCompilerPluginOptions } from './compiler-plugin-options' ;
1717import { createRxjsEsmResolutionPlugin } from './rxjs-esm-resolution-plugin' ;
18- import { createSourcemapIngorelistPlugin } from './sourcemap-ignorelist-plugin' ;
18+ import { createSourcemapIgnorelistPlugin } from './sourcemap-ignorelist-plugin' ;
1919import { getFeatureSupport } from './utils' ;
2020import { createVirtualModulePlugin } from './virtual-module-plugin' ;
2121
@@ -45,7 +45,7 @@ export function createBrowserCodeBundleOptions(
4545 target,
4646 supported : getFeatureSupport ( target ) ,
4747 plugins : [
48- createSourcemapIngorelistPlugin ( ) ,
48+ createSourcemapIgnorelistPlugin ( ) ,
4949 createCompilerPlugin (
5050 // JS/TS options
5151 pluginOptions ,
@@ -146,7 +146,7 @@ export function createServerCodeBundleOptions(
146146 entryPoints,
147147 supported : getFeatureSupport ( target ) ,
148148 plugins : [
149- createSourcemapIngorelistPlugin ( ) ,
149+ createSourcemapIgnorelistPlugin ( ) ,
150150 createCompilerPlugin (
151151 // JS/TS options
152152 { ...pluginOptions , noopTypeScriptCompilation : true } ,
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ import path from 'node:path';
1414import type { NormalizedApplicationBuildOptions } from '../../builders/application/options' ;
1515import { assertIsError } from '../../utils/error' ;
1616import { LoadResultCache , createCachedLoad } from './load-result-cache' ;
17- import { createSourcemapIngorelistPlugin } from './sourcemap-ignorelist-plugin' ;
17+ import { createSourcemapIgnorelistPlugin } from './sourcemap-ignorelist-plugin' ;
1818import { createVirtualModulePlugin } from './virtual-module-plugin' ;
1919
2020/**
@@ -71,7 +71,7 @@ export function createGlobalScriptsBundleOptions(
7171 platform : 'neutral' ,
7272 preserveSymlinks,
7373 plugins : [
74- createSourcemapIngorelistPlugin ( ) ,
74+ createSourcemapIgnorelistPlugin ( ) ,
7575 createVirtualModulePlugin ( {
7676 namespace,
7777 external : true ,
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ interface SourceMap {
3737 * For more information, see https://developer.chrome.com/articles/x-google-ignore-list/
3838 * @returns An esbuild plugin.
3939 */
40- export function createSourcemapIngorelistPlugin ( ) : Plugin {
40+ export function createSourcemapIgnorelistPlugin ( ) : Plugin {
4141 return {
4242 name : 'angular-sourcemap-ignorelist' ,
4343 setup ( build ) : void {
You can’t perform that action at this time.
0 commit comments