@angular/compiler-cli 11.2.8 → 11.2.9
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/linker/src/file_linker/partial_linkers/partial_linker_selector.d.ts +1 -1
- package/linker/src/file_linker/partial_linkers/partial_linker_selector.js +4 -4
- package/ngcc/src/packages/build_marker.d.ts +1 -1
- package/ngcc/src/packages/build_marker.js +1 -1
- package/package.json +2 -2
- package/src/ngtsc/annotations/src/component.d.ts +1 -6
- package/src/ngtsc/annotations/src/component.js +102 -75
- package/src/ngtsc/perf/src/api.d.ts +29 -1
- package/src/ngtsc/perf/src/api.js +30 -2
- package/src/perform_compile.js +16 -10
- package/src/version.js +1 -1
|
@@ -18,7 +18,7 @@ export declare const declarationFunctions: string[];
|
|
|
18
18
|
* Also, ranges are matched to include "pre-releases", therefore if the range is `>=11.1.0-next.1`
|
|
19
19
|
* then this includes `11.1.0-next.2` and also `12.0.0-next.1`.
|
|
20
20
|
*
|
|
21
|
-
* Finally, note that we always start with the current version (i.e. `11.2.
|
|
21
|
+
* Finally, note that we always start with the current version (i.e. `11.2.9`). This
|
|
22
22
|
* allows the linker to work on local builds effectively.
|
|
23
23
|
*/
|
|
24
24
|
export declare class PartialLinkerSelector<TStatement, TExpression> {
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
* Also, ranges are matched to include "pre-releases", therefore if the range is `>=11.1.0-next.1`
|
|
40
40
|
* then this includes `11.1.0-next.2` and also `12.0.0-next.1`.
|
|
41
41
|
*
|
|
42
|
-
* Finally, note that we always start with the current version (i.e. `11.2.
|
|
42
|
+
* Finally, note that we always start with the current version (i.e. `11.2.9`). This
|
|
43
43
|
* allows the linker to work on local builds effectively.
|
|
44
44
|
*/
|
|
45
45
|
var PartialLinkerSelector = /** @class */ (function () {
|
|
@@ -86,15 +86,15 @@
|
|
|
86
86
|
var partialPipeLinkerVersion1 = new partial_pipe_linker_1_1.PartialPipeLinkerVersion1();
|
|
87
87
|
var linkers = new Map();
|
|
88
88
|
linkers.set(exports.ɵɵngDeclareDirective, [
|
|
89
|
-
{ range: '11.2.
|
|
89
|
+
{ range: '11.2.9', linker: partialDirectiveLinkerVersion1 },
|
|
90
90
|
{ range: '>=11.1.0-next.1', linker: partialDirectiveLinkerVersion1 },
|
|
91
91
|
]);
|
|
92
92
|
linkers.set(exports.ɵɵngDeclareComponent, [
|
|
93
|
-
{ range: '11.2.
|
|
93
|
+
{ range: '11.2.9', linker: partialComponentLinkerVersion1 },
|
|
94
94
|
{ range: '>=11.1.0-next.1', linker: partialComponentLinkerVersion1 },
|
|
95
95
|
]);
|
|
96
96
|
linkers.set(exports.ɵɵngDeclarePipe, [
|
|
97
|
-
{ range: '11.2.
|
|
97
|
+
{ range: '11.2.9', linker: partialPipeLinkerVersion1 },
|
|
98
98
|
{ range: '>=11.1.0-next.1', linker: partialPipeLinkerVersion1 },
|
|
99
99
|
]);
|
|
100
100
|
return linkers;
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
import { AbsoluteFsPath } from '../../../src/ngtsc/file_system';
|
|
10
10
|
import { PackageJsonUpdater } from '../writing/package_json_updater';
|
|
11
11
|
import { EntryPointPackageJson, PackageJsonFormatProperties } from './entry_point';
|
|
12
|
-
export declare const NGCC_VERSION = "11.2.
|
|
12
|
+
export declare const NGCC_VERSION = "11.2.9";
|
|
13
13
|
/**
|
|
14
14
|
* Returns true if there is a format in this entry-point that was compiled with an outdated version
|
|
15
15
|
* of ngcc.
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
exports.markAsProcessed = exports.hasBeenProcessed = exports.cleanPackageJson = exports.needsCleaning = exports.NGCC_VERSION = void 0;
|
|
13
13
|
var tslib_1 = require("tslib");
|
|
14
14
|
var new_entry_point_file_writer_1 = require("@angular/compiler-cli/ngcc/src/writing/new_entry_point_file_writer");
|
|
15
|
-
exports.NGCC_VERSION = '11.2.
|
|
15
|
+
exports.NGCC_VERSION = '11.2.9';
|
|
16
16
|
/**
|
|
17
17
|
* Returns true if there is a format in this entry-point that was compiled with an outdated version
|
|
18
18
|
* of ngcc.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/compiler-cli",
|
|
3
|
-
"version": "11.2.
|
|
3
|
+
"version": "11.2.9",
|
|
4
4
|
"description": "Angular - the compiler CLI for Node.js",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"typings": "index.d.ts",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"yargs": "^16.2.0"
|
|
29
29
|
},
|
|
30
30
|
"peerDependencies": {
|
|
31
|
-
"@angular/compiler": "11.2.
|
|
31
|
+
"@angular/compiler": "11.2.9",
|
|
32
32
|
"typescript": ">=4.0 <4.2"
|
|
33
33
|
},
|
|
34
34
|
"engines": {
|
|
@@ -167,12 +167,7 @@ export declare class ComponentDecoratorHandler implements DecoratorHandler<Decor
|
|
|
167
167
|
*/
|
|
168
168
|
private _checkForCyclicImport;
|
|
169
169
|
private _recordSyntheticImport;
|
|
170
|
-
|
|
171
|
-
* Resolve the url of a resource relative to the file that contains the reference to it.
|
|
172
|
-
*
|
|
173
|
-
* Throws a FatalDiagnosticError when unable to resolve the file.
|
|
174
|
-
*/
|
|
175
|
-
private _resolveResourceOrThrow;
|
|
170
|
+
private makeResourceNotFoundError;
|
|
176
171
|
private _extractTemplateStyleUrls;
|
|
177
172
|
}
|
|
178
173
|
/**
|