@angular-eslint/bundled-angular-compiler 16.0.0-alpha.0 → 16.0.0

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.
Files changed (2) hide show
  1. package/dist/index.js +9 -9
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  'use strict';
2
2
 
3
3
  /**
4
- * @license Angular v16.0.0-rc.2
4
+ * @license Angular v16.0.0
5
5
  * (c) 2010-2022 Google LLC. https://angular.io/
6
6
  * License: MIT
7
7
  */
@@ -20187,7 +20187,7 @@ function publishFacade(global) {
20187
20187
  * @description
20188
20188
  * Entry point for all public APIs of the compiler package.
20189
20189
  */
20190
- const VERSION = new Version('16.0.0-rc.2');
20190
+ const VERSION = new Version('16.0.0');
20191
20191
 
20192
20192
  class CompilerConfig {
20193
20193
  constructor({ defaultEncapsulation = exports.ViewEncapsulation.Emulated, useJit = true, missingTranslation = null, preserveWhitespaces, strictInjectionParameters } = {}) {
@@ -22115,7 +22115,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION$6 = '12.0.0';
22115
22115
  function compileDeclareClassMetadata(metadata) {
22116
22116
  const definitionMap = new DefinitionMap();
22117
22117
  definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$6));
22118
- definitionMap.set('version', literal('16.0.0-rc.2'));
22118
+ definitionMap.set('version', literal('16.0.0'));
22119
22119
  definitionMap.set('ngImport', importExpr(Identifiers.core));
22120
22120
  definitionMap.set('type', metadata.type);
22121
22121
  definitionMap.set('decorators', metadata.decorators);
@@ -22218,7 +22218,7 @@ function compileDeclareDirectiveFromMetadata(meta) {
22218
22218
  function createDirectiveDefinitionMap(meta) {
22219
22219
  const definitionMap = new DefinitionMap();
22220
22220
  definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$5));
22221
- definitionMap.set('version', literal('16.0.0-rc.2'));
22221
+ definitionMap.set('version', literal('16.0.0'));
22222
22222
  // e.g. `type: MyDirective`
22223
22223
  definitionMap.set('type', meta.type.value);
22224
22224
  if (meta.isStandalone) {
@@ -22440,7 +22440,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION$4 = '12.0.0';
22440
22440
  function compileDeclareFactoryFunction(meta) {
22441
22441
  const definitionMap = new DefinitionMap();
22442
22442
  definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$4));
22443
- definitionMap.set('version', literal('16.0.0-rc.2'));
22443
+ definitionMap.set('version', literal('16.0.0'));
22444
22444
  definitionMap.set('ngImport', importExpr(Identifiers.core));
22445
22445
  definitionMap.set('type', meta.type.value);
22446
22446
  definitionMap.set('deps', compileDependencies(meta.deps));
@@ -22475,7 +22475,7 @@ function compileDeclareInjectableFromMetadata(meta) {
22475
22475
  function createInjectableDefinitionMap(meta) {
22476
22476
  const definitionMap = new DefinitionMap();
22477
22477
  definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$3));
22478
- definitionMap.set('version', literal('16.0.0-rc.2'));
22478
+ definitionMap.set('version', literal('16.0.0'));
22479
22479
  definitionMap.set('ngImport', importExpr(Identifiers.core));
22480
22480
  definitionMap.set('type', meta.type.value);
22481
22481
  // Only generate providedIn property if it has a non-null value
@@ -22526,7 +22526,7 @@ function compileDeclareInjectorFromMetadata(meta) {
22526
22526
  function createInjectorDefinitionMap(meta) {
22527
22527
  const definitionMap = new DefinitionMap();
22528
22528
  definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$2));
22529
- definitionMap.set('version', literal('16.0.0-rc.2'));
22529
+ definitionMap.set('version', literal('16.0.0'));
22530
22530
  definitionMap.set('ngImport', importExpr(Identifiers.core));
22531
22531
  definitionMap.set('type', meta.type.value);
22532
22532
  definitionMap.set('providers', meta.providers);
@@ -22556,7 +22556,7 @@ function compileDeclareNgModuleFromMetadata(meta) {
22556
22556
  function createNgModuleDefinitionMap(meta) {
22557
22557
  const definitionMap = new DefinitionMap();
22558
22558
  definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$1));
22559
- definitionMap.set('version', literal('16.0.0-rc.2'));
22559
+ definitionMap.set('version', literal('16.0.0'));
22560
22560
  definitionMap.set('ngImport', importExpr(Identifiers.core));
22561
22561
  definitionMap.set('type', meta.type.value);
22562
22562
  // We only generate the keys in the metadata if the arrays contain values.
@@ -22607,7 +22607,7 @@ function compileDeclarePipeFromMetadata(meta) {
22607
22607
  function createPipeDefinitionMap(meta) {
22608
22608
  const definitionMap = new DefinitionMap();
22609
22609
  definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION));
22610
- definitionMap.set('version', literal('16.0.0-rc.2'));
22610
+ definitionMap.set('version', literal('16.0.0'));
22611
22611
  definitionMap.set('ngImport', importExpr(Identifiers.core));
22612
22612
  // e.g. `type: MyPipe`
22613
22613
  definitionMap.set('type', meta.type.value);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular-eslint/bundled-angular-compiler",
3
- "version": "16.0.0-alpha.0",
3
+ "version": "16.0.0",
4
4
  "description": "A CJS bundled version of @angular/compiler",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -15,5 +15,5 @@
15
15
  "package.json",
16
16
  "README.md"
17
17
  ],
18
- "gitHead": "4bb6da6362f6625bffe7430d5117bbfb66e38d2b"
18
+ "gitHead": "245317c7bd83a94000e704060186098cadcf0195"
19
19
  }