@angular/core 19.1.6 → 19.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/core.mjs +611 -628
- package/fesm2022/core.mjs.map +1 -1
- package/fesm2022/primitives/event-dispatch.mjs +1 -1
- package/fesm2022/primitives/signals.mjs +1 -1
- package/fesm2022/rxjs-interop.mjs +1 -1
- package/fesm2022/testing.mjs +4 -4
- package/index.d.ts +12 -35
- package/package.json +1 -1
- package/primitives/event-dispatch/index.d.ts +1 -1
- package/primitives/signals/index.d.ts +1 -1
- package/rxjs-interop/index.d.ts +1 -1
- package/schematics/bundles/{apply_import_manager-61eb7e4a.js → apply_import_manager-3220dafc.js} +3 -3
- package/schematics/bundles/{checker-58684f3f.js → checker-2bdbb582.js} +17 -16
- package/schematics/bundles/cleanup-unused-imports.js +6 -6
- package/schematics/bundles/{compiler_host-dff4346e.js → compiler_host-833d3812.js} +2 -2
- package/schematics/bundles/control-flow-migration.js +3 -3
- package/schematics/bundles/explicit-standalone-flag.js +5 -5
- package/schematics/bundles/{imports-31a38653.js → imports-abe29092.js} +1 -1
- package/schematics/bundles/{index-4bb9c755.js → index-4978a91a.js} +4 -4
- package/schematics/bundles/{index-027c9191.js → index-be586082.js} +4 -4
- package/schematics/bundles/inject-migration.js +6 -6
- package/schematics/bundles/{leading_space-6e7a8ec6.js → leading_space-d190b83b.js} +1 -1
- package/schematics/bundles/{migrate_ts_type_references-f48f6ec0.js → migrate_ts_type_references-d2b2e8f1.js} +6 -6
- package/schematics/bundles/{nodes-88c2157f.js → nodes-a9f0b985.js} +2 -2
- package/schematics/bundles/output-migration.js +6 -6
- package/schematics/bundles/pending-tasks.js +5 -5
- package/schematics/bundles/{program-721d697e.js → program-f43dcb10.js} +12 -12
- package/schematics/bundles/{project_tsconfig_paths-6c9cde78.js → project_tsconfig_paths-e9ccccbf.js} +1 -1
- package/schematics/bundles/provide-initializer.js +5 -5
- package/schematics/bundles/route-lazy-loading.js +4 -4
- package/schematics/bundles/signal-input-migration.js +8 -8
- package/schematics/bundles/signal-queries-migration.js +8 -8
- package/schematics/bundles/signals.js +8 -8
- package/schematics/bundles/standalone-migration.js +8 -8
- package/testing/index.d.ts +1 -1
package/fesm2022/testing.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v19.1.
|
|
2
|
+
* @license Angular v19.1.7
|
|
3
3
|
* (c) 2010-2024 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -175,10 +175,10 @@ class TestBedApplicationErrorHandler {
|
|
|
175
175
|
throw e;
|
|
176
176
|
}
|
|
177
177
|
}
|
|
178
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.
|
|
179
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.
|
|
178
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.7", ngImport: i0, type: TestBedApplicationErrorHandler, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
179
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.7", ngImport: i0, type: TestBedApplicationErrorHandler });
|
|
180
180
|
}
|
|
181
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.
|
|
181
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.7", ngImport: i0, type: TestBedApplicationErrorHandler, decorators: [{
|
|
182
182
|
type: Injectable
|
|
183
183
|
}] });
|
|
184
184
|
|
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v19.1.
|
|
2
|
+
* @license Angular v19.1.7
|
|
3
3
|
* (c) 2010-2024 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -5647,9 +5647,8 @@ export declare type ImportProvidersSource = Type<unknown> | ModuleWithProviders<
|
|
|
5647
5647
|
*
|
|
5648
5648
|
* Within each sub-array:
|
|
5649
5649
|
*
|
|
5650
|
-
* i+0:
|
|
5651
|
-
* i+1:
|
|
5652
|
-
* i+2: initial value
|
|
5650
|
+
* i+0: public name
|
|
5651
|
+
* i+1: initial value
|
|
5653
5652
|
*
|
|
5654
5653
|
* If a directive on a node does not have any input properties
|
|
5655
5654
|
* that should be set from attributes, its index is set to null
|
|
@@ -5670,7 +5669,7 @@ declare type InitialInputData = (InitialInputs | null)[];
|
|
|
5670
5669
|
*
|
|
5671
5670
|
* e.g. ['role-min', 'minified-input', 'button']
|
|
5672
5671
|
*/
|
|
5673
|
-
declare type InitialInputs =
|
|
5672
|
+
declare type InitialInputs = string[];
|
|
5674
5673
|
|
|
5675
5674
|
/**
|
|
5676
5675
|
* Type of the Inject metadata.
|
|
@@ -8115,16 +8114,15 @@ export declare const NO_ERRORS_SCHEMA: SchemaMetadata;
|
|
|
8115
8114
|
*
|
|
8116
8115
|
* i+0: directive instance index
|
|
8117
8116
|
* i+1: privateName
|
|
8118
|
-
* i+2: input flags
|
|
8119
8117
|
*
|
|
8120
8118
|
* e.g.
|
|
8121
8119
|
* ```
|
|
8122
8120
|
* {
|
|
8123
|
-
* "publicName": [0, 'change-minified'
|
|
8121
|
+
* "publicName": [0, 'change-minified']
|
|
8124
8122
|
* }
|
|
8125
8123
|
* ```
|
|
8126
8124
|
*/
|
|
8127
|
-
declare type NodeInputBindings = Record<string, (number | string
|
|
8125
|
+
declare type NodeInputBindings = Record<string, (number | string)[]>;
|
|
8128
8126
|
|
|
8129
8127
|
/**
|
|
8130
8128
|
* Store the runtime output names for all the directives.
|
|
@@ -13382,20 +13380,11 @@ export declare interface ɵDirectiveDef<T> {
|
|
|
13382
13380
|
* A dictionary mapping the inputs' public name to their minified property names
|
|
13383
13381
|
* (along with flags if there are any).
|
|
13384
13382
|
*/
|
|
13385
|
-
readonly inputs:
|
|
13386
|
-
|
|
13387
|
-
|
|
13388
|
-
|
|
13389
|
-
|
|
13390
|
-
* Note: the private names are used for the keys, rather than the public ones, because public
|
|
13391
|
-
* names can be re-aliased in host directives which would invalidate the lookup.
|
|
13392
|
-
*
|
|
13393
|
-
* Note: Signal inputs will not have transforms captured here. This is because their
|
|
13394
|
-
* transform function is already integrated into the `InputSignal`.
|
|
13395
|
-
*/
|
|
13396
|
-
readonly inputTransforms: {
|
|
13397
|
-
[classPropertyName: string]: InputTransformFunction;
|
|
13398
|
-
} | null;
|
|
13383
|
+
readonly inputs: Record<string, [
|
|
13384
|
+
minifiedName: string,
|
|
13385
|
+
flags: InputFlags,
|
|
13386
|
+
transform: InputTransformFunction | null
|
|
13387
|
+
]>;
|
|
13399
13388
|
/**
|
|
13400
13389
|
* Contains the raw input information produced by the compiler. Can be
|
|
13401
13390
|
* used to do further processing after the `inputs` have been inverted.
|
|
@@ -13413,9 +13402,7 @@ export declare interface ɵDirectiveDef<T> {
|
|
|
13413
13402
|
* are their aliases if any, or their original unminified property names
|
|
13414
13403
|
* (as in `@Output('alias') propertyName: any;`).
|
|
13415
13404
|
*/
|
|
13416
|
-
readonly outputs:
|
|
13417
|
-
[P in keyof T]?: string;
|
|
13418
|
-
};
|
|
13405
|
+
readonly outputs: Record<string, string>;
|
|
13419
13406
|
/**
|
|
13420
13407
|
* Function to create and refresh content queries associated with a given directive.
|
|
13421
13408
|
*/
|
|
@@ -16806,16 +16793,6 @@ export declare interface ɵɵInjectorDef<T> {
|
|
|
16806
16793
|
imports: (InjectorType<any> | InjectorTypeWithProviders<any>)[];
|
|
16807
16794
|
}
|
|
16808
16795
|
|
|
16809
|
-
/**
|
|
16810
|
-
* Decorates the directive definition with support for input transform functions.
|
|
16811
|
-
*
|
|
16812
|
-
* If the directive uses inheritance, the feature should be included before the
|
|
16813
|
-
* `InheritDefinitionFeature` to ensure that the `inputTransforms` field is populated.
|
|
16814
|
-
*
|
|
16815
|
-
* @codeGenApi
|
|
16816
|
-
*/
|
|
16817
|
-
export declare function ɵɵInputTransformsFeature<T>(definition: ɵDirectiveDef<T>): void;
|
|
16818
|
-
|
|
16819
16796
|
/**
|
|
16820
16797
|
* Throws an error indicating that a factory function could not be generated by the compiler for a
|
|
16821
16798
|
* particular class.
|
package/package.json
CHANGED
package/rxjs-interop/index.d.ts
CHANGED
package/schematics/bundles/{apply_import_manager-61eb7e4a.js → apply_import_manager-3220dafc.js}
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
/**
|
|
3
|
-
* @license Angular v19.1.
|
|
3
|
+
* @license Angular v19.1.7
|
|
4
4
|
* (c) 2010-2024 Google LLC. https://angular.io/
|
|
5
5
|
* License: MIT
|
|
6
6
|
*/
|
|
@@ -10,8 +10,8 @@ var core = require('@angular-devkit/core');
|
|
|
10
10
|
var posixPath = require('node:path/posix');
|
|
11
11
|
var os = require('os');
|
|
12
12
|
var ts = require('typescript');
|
|
13
|
-
var checker = require('./checker-
|
|
14
|
-
var program = require('./program-
|
|
13
|
+
var checker = require('./checker-2bdbb582.js');
|
|
14
|
+
var program = require('./program-f43dcb10.js');
|
|
15
15
|
require('path');
|
|
16
16
|
|
|
17
17
|
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
/**
|
|
3
|
-
* @license Angular v19.1.
|
|
3
|
+
* @license Angular v19.1.7
|
|
4
4
|
* (c) 2010-2024 Google LLC. https://angular.io/
|
|
5
5
|
* License: MIT
|
|
6
6
|
*/
|
|
@@ -2915,10 +2915,6 @@ class Identifiers {
|
|
|
2915
2915
|
name: 'ɵɵHostDirectivesFeature',
|
|
2916
2916
|
moduleName: CORE,
|
|
2917
2917
|
};
|
|
2918
|
-
static InputTransformsFeatureFeature = {
|
|
2919
|
-
name: 'ɵɵInputTransformsFeature',
|
|
2920
|
-
moduleName: CORE,
|
|
2921
|
-
};
|
|
2922
2918
|
static ExternalStylesFeature = {
|
|
2923
2919
|
name: 'ɵɵExternalStylesFeature',
|
|
2924
2920
|
moduleName: CORE,
|
|
@@ -28502,7 +28498,6 @@ function addFeatures(definitionMap, meta) {
|
|
|
28502
28498
|
const features = [];
|
|
28503
28499
|
const providers = meta.providers;
|
|
28504
28500
|
const viewProviders = meta.viewProviders;
|
|
28505
|
-
const inputKeys = Object.keys(meta.inputs);
|
|
28506
28501
|
if (providers || viewProviders) {
|
|
28507
28502
|
const args = [providers || new LiteralArrayExpr([])];
|
|
28508
28503
|
if (viewProviders) {
|
|
@@ -28510,12 +28505,6 @@ function addFeatures(definitionMap, meta) {
|
|
|
28510
28505
|
}
|
|
28511
28506
|
features.push(importExpr(Identifiers.ProvidersFeature).callFn(args));
|
|
28512
28507
|
}
|
|
28513
|
-
for (const key of inputKeys) {
|
|
28514
|
-
if (meta.inputs[key].transformFunction !== null) {
|
|
28515
|
-
features.push(importExpr(Identifiers.InputTransformsFeatureFeature));
|
|
28516
|
-
break;
|
|
28517
|
-
}
|
|
28518
|
-
}
|
|
28519
28508
|
// Note: host directives feature needs to be inserted before the
|
|
28520
28509
|
// inheritance feature to ensure the correct execution order.
|
|
28521
28510
|
if (meta.hostDirectives?.length) {
|
|
@@ -30488,7 +30477,7 @@ function publishFacade(global) {
|
|
|
30488
30477
|
* @description
|
|
30489
30478
|
* Entry point for all public APIs of the compiler package.
|
|
30490
30479
|
*/
|
|
30491
|
-
new Version('19.1.
|
|
30480
|
+
new Version('19.1.7');
|
|
30492
30481
|
|
|
30493
30482
|
const _I18N_ATTR = 'i18n';
|
|
30494
30483
|
const _I18N_ATTR_PREFIX = 'i18n-';
|
|
@@ -31896,7 +31885,7 @@ class NodeJSPathManipulation {
|
|
|
31896
31885
|
// G3-ESM-MARKER: G3 uses CommonJS, but externally everything in ESM.
|
|
31897
31886
|
// CommonJS/ESM interop for determining the current file name and containing dir.
|
|
31898
31887
|
const isCommonJS = typeof __filename !== 'undefined';
|
|
31899
|
-
const currentFileUrl = isCommonJS ? null : (typeof document === 'undefined' ? new (require('u' + 'rl').URL)('file:' + __filename).href : (document.currentScript && document.currentScript.tagName.toUpperCase() === 'SCRIPT' && document.currentScript.src || new URL('checker-
|
|
31888
|
+
const currentFileUrl = isCommonJS ? null : (typeof document === 'undefined' ? new (require('u' + 'rl').URL)('file:' + __filename).href : (document.currentScript && document.currentScript.tagName.toUpperCase() === 'SCRIPT' && document.currentScript.src || new URL('checker-2bdbb582.js', document.baseURI).href));
|
|
31900
31889
|
const currentFileName = isCommonJS ? __filename : url.fileURLToPath(currentFileUrl);
|
|
31901
31890
|
/**
|
|
31902
31891
|
* A wrapper around the Node.js file-system that supports readonly operations and path manipulation.
|
|
@@ -32526,6 +32515,11 @@ const patchedReferencedAliasesSymbol = Symbol('patchedReferencedAliases');
|
|
|
32526
32515
|
* that have been referenced in a value-position by the transform, such the installed patch can
|
|
32527
32516
|
* ensure that those import declarations are not elided.
|
|
32528
32517
|
*
|
|
32518
|
+
* If `null` is returned then the transform operates in an isolated context, i.e. using the
|
|
32519
|
+
* `ts.transform` API. In such scenario there is no information whether an alias declaration
|
|
32520
|
+
* is referenced, so all alias declarations are naturally preserved and explicitly registering
|
|
32521
|
+
* an alias declaration as used isn't necessary.
|
|
32522
|
+
*
|
|
32529
32523
|
* See below. Note that this uses sourcegraph as the TypeScript checker file doesn't display on
|
|
32530
32524
|
* Github.
|
|
32531
32525
|
* https://sourcegraph.com/github.com/microsoft/TypeScript@3eaa7c65f6f076a08a5f7f1946fd0df7c7430259/-/blob/src/compiler/checker.ts#L31219-31257
|
|
@@ -32537,6 +32531,11 @@ function loadIsReferencedAliasDeclarationPatch(context) {
|
|
|
32537
32531
|
throwIncompatibleTransformationContextError();
|
|
32538
32532
|
}
|
|
32539
32533
|
const emitResolver = context.getEmitResolver();
|
|
32534
|
+
if (emitResolver === undefined) {
|
|
32535
|
+
// In isolated `ts.transform` operations no emit resolver is present, return null as `isReferencedAliasDeclaration`
|
|
32536
|
+
// will never be invoked.
|
|
32537
|
+
return null;
|
|
32538
|
+
}
|
|
32540
32539
|
// The emit resolver may have been patched already, in which case we return the set of referenced
|
|
32541
32540
|
// aliases that was created when the patch was first applied.
|
|
32542
32541
|
// See https://github.com/angular/angular/issues/40276.
|
|
@@ -32662,7 +32661,7 @@ class DefaultImportTracker {
|
|
|
32662
32661
|
if (clausesToPreserve === null) {
|
|
32663
32662
|
clausesToPreserve = loadIsReferencedAliasDeclarationPatch(context);
|
|
32664
32663
|
}
|
|
32665
|
-
clausesToPreserve
|
|
32664
|
+
clausesToPreserve?.add(clause);
|
|
32666
32665
|
}
|
|
32667
32666
|
}
|
|
32668
32667
|
return sourceFile;
|
|
@@ -35859,7 +35858,9 @@ function createTsTransformForImportManager(manager, extraStatementsForFiles) {
|
|
|
35859
35858
|
// doesn't drop these thinking they are unused.
|
|
35860
35859
|
if (reusedOriginalAliasDeclarations.size > 0) {
|
|
35861
35860
|
const referencedAliasDeclarations = loadIsReferencedAliasDeclarationPatch(ctx);
|
|
35862
|
-
|
|
35861
|
+
if (referencedAliasDeclarations !== null) {
|
|
35862
|
+
reusedOriginalAliasDeclarations.forEach((aliasDecl) => referencedAliasDeclarations.add(aliasDecl));
|
|
35863
|
+
}
|
|
35863
35864
|
}
|
|
35864
35865
|
// Update the set of affected files to include files that need extra statements to be inserted.
|
|
35865
35866
|
if (extraStatementsForFiles !== undefined) {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
/**
|
|
3
|
-
* @license Angular v19.1.
|
|
3
|
+
* @license Angular v19.1.7
|
|
4
4
|
* (c) 2010-2024 Google LLC. https://angular.io/
|
|
5
5
|
* License: MIT
|
|
6
6
|
*/
|
|
@@ -9,14 +9,14 @@
|
|
|
9
9
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
10
10
|
|
|
11
11
|
var schematics = require('@angular-devkit/schematics');
|
|
12
|
-
var project_tsconfig_paths = require('./project_tsconfig_paths-
|
|
13
|
-
var apply_import_manager = require('./apply_import_manager-
|
|
12
|
+
var project_tsconfig_paths = require('./project_tsconfig_paths-e9ccccbf.js');
|
|
13
|
+
var apply_import_manager = require('./apply_import_manager-3220dafc.js');
|
|
14
14
|
require('os');
|
|
15
15
|
var ts = require('typescript');
|
|
16
|
-
var checker = require('./checker-
|
|
17
|
-
var program = require('./program-
|
|
16
|
+
var checker = require('./checker-2bdbb582.js');
|
|
17
|
+
var program = require('./program-f43dcb10.js');
|
|
18
18
|
require('path');
|
|
19
|
-
require('./index-
|
|
19
|
+
require('./index-4978a91a.js');
|
|
20
20
|
require('@angular-devkit/core');
|
|
21
21
|
require('node:path/posix');
|
|
22
22
|
require('fs');
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
/**
|
|
3
|
-
* @license Angular v19.1.
|
|
3
|
+
* @license Angular v19.1.7
|
|
4
4
|
* (c) 2010-2024 Google LLC. https://angular.io/
|
|
5
5
|
* License: MIT
|
|
6
6
|
*/
|
|
7
7
|
'use strict';
|
|
8
8
|
|
|
9
9
|
var ts = require('typescript');
|
|
10
|
-
var checker = require('./checker-
|
|
10
|
+
var checker = require('./checker-2bdbb582.js');
|
|
11
11
|
require('os');
|
|
12
12
|
var p = require('path');
|
|
13
13
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
/**
|
|
3
|
-
* @license Angular v19.1.
|
|
3
|
+
* @license Angular v19.1.7
|
|
4
4
|
* (c) 2010-2024 Google LLC. https://angular.io/
|
|
5
5
|
* License: MIT
|
|
6
6
|
*/
|
|
@@ -10,8 +10,8 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
10
10
|
|
|
11
11
|
var schematics = require('@angular-devkit/schematics');
|
|
12
12
|
var p = require('path');
|
|
13
|
-
var compiler_host = require('./compiler_host-
|
|
14
|
-
var checker = require('./checker-
|
|
13
|
+
var compiler_host = require('./compiler_host-833d3812.js');
|
|
14
|
+
var checker = require('./checker-2bdbb582.js');
|
|
15
15
|
var ts = require('typescript');
|
|
16
16
|
require('os');
|
|
17
17
|
require('fs');
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
/**
|
|
3
|
-
* @license Angular v19.1.
|
|
3
|
+
* @license Angular v19.1.7
|
|
4
4
|
* (c) 2010-2024 Google LLC. https://angular.io/
|
|
5
5
|
* License: MIT
|
|
6
6
|
*/
|
|
@@ -10,12 +10,12 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
10
10
|
|
|
11
11
|
var schematics = require('@angular-devkit/schematics');
|
|
12
12
|
var p = require('path');
|
|
13
|
-
var project_tsconfig_paths = require('./project_tsconfig_paths-
|
|
14
|
-
var compiler_host = require('./compiler_host-
|
|
13
|
+
var project_tsconfig_paths = require('./project_tsconfig_paths-e9ccccbf.js');
|
|
14
|
+
var compiler_host = require('./compiler_host-833d3812.js');
|
|
15
15
|
var ts = require('typescript');
|
|
16
|
-
var imports = require('./imports-
|
|
16
|
+
var imports = require('./imports-abe29092.js');
|
|
17
17
|
require('@angular-devkit/core');
|
|
18
|
-
require('./checker-
|
|
18
|
+
require('./checker-2bdbb582.js');
|
|
19
19
|
require('os');
|
|
20
20
|
require('fs');
|
|
21
21
|
require('module');
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
/**
|
|
3
|
-
* @license Angular v19.1.
|
|
3
|
+
* @license Angular v19.1.7
|
|
4
4
|
* (c) 2010-2024 Google LLC. https://angular.io/
|
|
5
5
|
* License: MIT
|
|
6
6
|
*/
|
|
@@ -8,8 +8,8 @@
|
|
|
8
8
|
|
|
9
9
|
require('os');
|
|
10
10
|
require('typescript');
|
|
11
|
-
var checker = require('./checker-
|
|
12
|
-
require('./program-
|
|
11
|
+
var checker = require('./checker-2bdbb582.js');
|
|
12
|
+
require('./program-f43dcb10.js');
|
|
13
13
|
require('path');
|
|
14
14
|
|
|
15
15
|
/**
|
|
@@ -17,7 +17,7 @@ require('path');
|
|
|
17
17
|
* @description
|
|
18
18
|
* Entry point for all public APIs of the compiler-cli package.
|
|
19
19
|
*/
|
|
20
|
-
new checker.Version('19.1.
|
|
20
|
+
new checker.Version('19.1.7');
|
|
21
21
|
|
|
22
22
|
var LogLevel;
|
|
23
23
|
(function (LogLevel) {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
/**
|
|
3
|
-
* @license Angular v19.1.
|
|
3
|
+
* @license Angular v19.1.7
|
|
4
4
|
* (c) 2010-2024 Google LLC. https://angular.io/
|
|
5
5
|
* License: MIT
|
|
6
6
|
*/
|
|
@@ -8,10 +8,10 @@
|
|
|
8
8
|
|
|
9
9
|
var ts = require('typescript');
|
|
10
10
|
require('os');
|
|
11
|
-
var checker = require('./checker-
|
|
12
|
-
var program = require('./program-
|
|
11
|
+
var checker = require('./checker-2bdbb582.js');
|
|
12
|
+
var program = require('./program-f43dcb10.js');
|
|
13
13
|
require('path');
|
|
14
|
-
var apply_import_manager = require('./apply_import_manager-
|
|
14
|
+
var apply_import_manager = require('./apply_import_manager-3220dafc.js');
|
|
15
15
|
|
|
16
16
|
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
17
17
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
/**
|
|
3
|
-
* @license Angular v19.1.
|
|
3
|
+
* @license Angular v19.1.7
|
|
4
4
|
* (c) 2010-2024 Google LLC. https://angular.io/
|
|
5
5
|
* License: MIT
|
|
6
6
|
*/
|
|
@@ -10,12 +10,12 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
10
10
|
|
|
11
11
|
var schematics = require('@angular-devkit/schematics');
|
|
12
12
|
var p = require('path');
|
|
13
|
-
var compiler_host = require('./compiler_host-
|
|
13
|
+
var compiler_host = require('./compiler_host-833d3812.js');
|
|
14
14
|
var ts = require('typescript');
|
|
15
|
-
var nodes = require('./nodes-
|
|
16
|
-
var imports = require('./imports-
|
|
17
|
-
var leading_space = require('./leading_space-
|
|
18
|
-
require('./checker-
|
|
15
|
+
var nodes = require('./nodes-a9f0b985.js');
|
|
16
|
+
var imports = require('./imports-abe29092.js');
|
|
17
|
+
var leading_space = require('./leading_space-d190b83b.js');
|
|
18
|
+
require('./checker-2bdbb582.js');
|
|
19
19
|
require('os');
|
|
20
20
|
require('fs');
|
|
21
21
|
require('module');
|
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
/**
|
|
3
|
-
* @license Angular v19.1.
|
|
3
|
+
* @license Angular v19.1.7
|
|
4
4
|
* (c) 2010-2024 Google LLC. https://angular.io/
|
|
5
5
|
* License: MIT
|
|
6
6
|
*/
|
|
7
7
|
'use strict';
|
|
8
8
|
|
|
9
|
-
var checker = require('./checker-
|
|
9
|
+
var checker = require('./checker-2bdbb582.js');
|
|
10
10
|
var ts = require('typescript');
|
|
11
11
|
require('os');
|
|
12
12
|
var assert = require('assert');
|
|
13
|
-
var index = require('./index-
|
|
14
|
-
var apply_import_manager = require('./apply_import_manager-
|
|
15
|
-
var leading_space = require('./leading_space-
|
|
16
|
-
require('./program-
|
|
13
|
+
var index = require('./index-be586082.js');
|
|
14
|
+
var apply_import_manager = require('./apply_import_manager-3220dafc.js');
|
|
15
|
+
var leading_space = require('./leading_space-d190b83b.js');
|
|
16
|
+
require('./program-f43dcb10.js');
|
|
17
17
|
require('path');
|
|
18
18
|
|
|
19
19
|
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
/**
|
|
3
|
-
* @license Angular v19.1.
|
|
3
|
+
* @license Angular v19.1.7
|
|
4
4
|
* (c) 2010-2024 Google LLC. https://angular.io/
|
|
5
5
|
* License: MIT
|
|
6
6
|
*/
|
|
7
7
|
'use strict';
|
|
8
8
|
|
|
9
9
|
var ts = require('typescript');
|
|
10
|
-
var imports = require('./imports-
|
|
10
|
+
var imports = require('./imports-abe29092.js');
|
|
11
11
|
|
|
12
12
|
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
13
13
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
/**
|
|
3
|
-
* @license Angular v19.1.
|
|
3
|
+
* @license Angular v19.1.7
|
|
4
4
|
* (c) 2010-2024 Google LLC. https://angular.io/
|
|
5
5
|
* License: MIT
|
|
6
6
|
*/
|
|
@@ -9,14 +9,14 @@
|
|
|
9
9
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
10
10
|
|
|
11
11
|
var schematics = require('@angular-devkit/schematics');
|
|
12
|
-
var project_tsconfig_paths = require('./project_tsconfig_paths-
|
|
13
|
-
var apply_import_manager = require('./apply_import_manager-
|
|
12
|
+
var project_tsconfig_paths = require('./project_tsconfig_paths-e9ccccbf.js');
|
|
13
|
+
var apply_import_manager = require('./apply_import_manager-3220dafc.js');
|
|
14
14
|
require('os');
|
|
15
15
|
var ts = require('typescript');
|
|
16
|
-
var checker = require('./checker-
|
|
17
|
-
var program = require('./program-
|
|
16
|
+
var checker = require('./checker-2bdbb582.js');
|
|
17
|
+
var program = require('./program-f43dcb10.js');
|
|
18
18
|
require('path');
|
|
19
|
-
var index = require('./index-
|
|
19
|
+
var index = require('./index-be586082.js');
|
|
20
20
|
require('@angular-devkit/core');
|
|
21
21
|
require('node:path/posix');
|
|
22
22
|
require('fs');
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
/**
|
|
3
|
-
* @license Angular v19.1.
|
|
3
|
+
* @license Angular v19.1.7
|
|
4
4
|
* (c) 2010-2024 Google LLC. https://angular.io/
|
|
5
5
|
* License: MIT
|
|
6
6
|
*/
|
|
@@ -10,12 +10,12 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
10
10
|
|
|
11
11
|
var schematics = require('@angular-devkit/schematics');
|
|
12
12
|
var p = require('path');
|
|
13
|
-
var project_tsconfig_paths = require('./project_tsconfig_paths-
|
|
14
|
-
var compiler_host = require('./compiler_host-
|
|
13
|
+
var project_tsconfig_paths = require('./project_tsconfig_paths-e9ccccbf.js');
|
|
14
|
+
var compiler_host = require('./compiler_host-833d3812.js');
|
|
15
15
|
var ts = require('typescript');
|
|
16
|
-
var imports = require('./imports-
|
|
16
|
+
var imports = require('./imports-abe29092.js');
|
|
17
17
|
require('@angular-devkit/core');
|
|
18
|
-
require('./checker-
|
|
18
|
+
require('./checker-2bdbb582.js');
|
|
19
19
|
require('os');
|
|
20
20
|
require('fs');
|
|
21
21
|
require('module');
|