File tree 3 files changed +6
-6
lines changed
packages/angular_devkit/build_angular/src/tools/esbuild
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';
15
15
import { SourceFileCache , createCompilerPlugin } from './angular/compiler-plugin' ;
16
16
import { createCompilerPluginOptions } from './compiler-plugin-options' ;
17
17
import { createRxjsEsmResolutionPlugin } from './rxjs-esm-resolution-plugin' ;
18
- import { createSourcemapIngorelistPlugin } from './sourcemap-ignorelist-plugin' ;
18
+ import { createSourcemapIgnorelistPlugin } from './sourcemap-ignorelist-plugin' ;
19
19
import { getFeatureSupport } from './utils' ;
20
20
import { createVirtualModulePlugin } from './virtual-module-plugin' ;
21
21
@@ -45,7 +45,7 @@ export function createBrowserCodeBundleOptions(
45
45
target,
46
46
supported : getFeatureSupport ( target ) ,
47
47
plugins : [
48
- createSourcemapIngorelistPlugin ( ) ,
48
+ createSourcemapIgnorelistPlugin ( ) ,
49
49
createCompilerPlugin (
50
50
// JS/TS options
51
51
pluginOptions ,
@@ -146,7 +146,7 @@ export function createServerCodeBundleOptions(
146
146
entryPoints,
147
147
supported : getFeatureSupport ( target ) ,
148
148
plugins : [
149
- createSourcemapIngorelistPlugin ( ) ,
149
+ createSourcemapIgnorelistPlugin ( ) ,
150
150
createCompilerPlugin (
151
151
// JS/TS options
152
152
{ ...pluginOptions , noopTypeScriptCompilation : true } ,
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ import path from 'node:path';
14
14
import type { NormalizedApplicationBuildOptions } from '../../builders/application/options' ;
15
15
import { assertIsError } from '../../utils/error' ;
16
16
import { LoadResultCache , createCachedLoad } from './load-result-cache' ;
17
- import { createSourcemapIngorelistPlugin } from './sourcemap-ignorelist-plugin' ;
17
+ import { createSourcemapIgnorelistPlugin } from './sourcemap-ignorelist-plugin' ;
18
18
import { createVirtualModulePlugin } from './virtual-module-plugin' ;
19
19
20
20
/**
@@ -71,7 +71,7 @@ export function createGlobalScriptsBundleOptions(
71
71
platform : 'neutral' ,
72
72
preserveSymlinks,
73
73
plugins : [
74
- createSourcemapIngorelistPlugin ( ) ,
74
+ createSourcemapIgnorelistPlugin ( ) ,
75
75
createVirtualModulePlugin ( {
76
76
namespace,
77
77
external : true ,
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ interface SourceMap {
37
37
* For more information, see https://developer.chrome.com/articles/x-google-ignore-list/
38
38
* @returns An esbuild plugin.
39
39
*/
40
- export function createSourcemapIngorelistPlugin ( ) : Plugin {
40
+ export function createSourcemapIgnorelistPlugin ( ) : Plugin {
41
41
return {
42
42
name : 'angular-sourcemap-ignorelist' ,
43
43
setup ( build ) : void {
You can’t perform that action at this time.
0 commit comments