@angular-eslint/bundled-angular-compiler 17.0.0 → 17.0.1

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 v17.0.0
4
+ * @license Angular v17.0.1
5
5
  * (c) 2010-2022 Google LLC. https://angular.io/
6
6
  * License: MIT
7
7
  */
@@ -29684,7 +29684,7 @@ function publishFacade(global) {
29684
29684
  * @description
29685
29685
  * Entry point for all public APIs of the compiler package.
29686
29686
  */
29687
- const VERSION = new Version('17.0.0');
29687
+ const VERSION = new Version('17.0.1');
29688
29688
 
29689
29689
  class CompilerConfig {
29690
29690
  constructor({ defaultEncapsulation = exports.ViewEncapsulation.Emulated, preserveWhitespaces, strictInjectionParameters } = {}) {
@@ -31214,7 +31214,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION$6 = '12.0.0';
31214
31214
  function compileDeclareClassMetadata(metadata) {
31215
31215
  const definitionMap = new DefinitionMap();
31216
31216
  definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$6));
31217
- definitionMap.set('version', literal('17.0.0'));
31217
+ definitionMap.set('version', literal('17.0.1'));
31218
31218
  definitionMap.set('ngImport', importExpr(Identifiers.core));
31219
31219
  definitionMap.set('type', metadata.type);
31220
31220
  definitionMap.set('decorators', metadata.decorators);
@@ -31322,7 +31322,7 @@ function createDirectiveDefinitionMap(meta) {
31322
31322
  // in 16.1 is actually used.
31323
31323
  const minVersion = hasTransformFunctions ? MINIMUM_PARTIAL_LINKER_VERSION$5 : '14.0.0';
31324
31324
  definitionMap.set('minVersion', literal(minVersion));
31325
- definitionMap.set('version', literal('17.0.0'));
31325
+ definitionMap.set('version', literal('17.0.1'));
31326
31326
  // e.g. `type: MyDirective`
31327
31327
  definitionMap.set('type', meta.type.value);
31328
31328
  if (meta.isStandalone) {
@@ -31596,7 +31596,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION$4 = '12.0.0';
31596
31596
  function compileDeclareFactoryFunction(meta) {
31597
31597
  const definitionMap = new DefinitionMap();
31598
31598
  definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$4));
31599
- definitionMap.set('version', literal('17.0.0'));
31599
+ definitionMap.set('version', literal('17.0.1'));
31600
31600
  definitionMap.set('ngImport', importExpr(Identifiers.core));
31601
31601
  definitionMap.set('type', meta.type.value);
31602
31602
  definitionMap.set('deps', compileDependencies(meta.deps));
@@ -31631,7 +31631,7 @@ function compileDeclareInjectableFromMetadata(meta) {
31631
31631
  function createInjectableDefinitionMap(meta) {
31632
31632
  const definitionMap = new DefinitionMap();
31633
31633
  definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$3));
31634
- definitionMap.set('version', literal('17.0.0'));
31634
+ definitionMap.set('version', literal('17.0.1'));
31635
31635
  definitionMap.set('ngImport', importExpr(Identifiers.core));
31636
31636
  definitionMap.set('type', meta.type.value);
31637
31637
  // Only generate providedIn property if it has a non-null value
@@ -31682,7 +31682,7 @@ function compileDeclareInjectorFromMetadata(meta) {
31682
31682
  function createInjectorDefinitionMap(meta) {
31683
31683
  const definitionMap = new DefinitionMap();
31684
31684
  definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$2));
31685
- definitionMap.set('version', literal('17.0.0'));
31685
+ definitionMap.set('version', literal('17.0.1'));
31686
31686
  definitionMap.set('ngImport', importExpr(Identifiers.core));
31687
31687
  definitionMap.set('type', meta.type.value);
31688
31688
  definitionMap.set('providers', meta.providers);
@@ -31715,7 +31715,7 @@ function createNgModuleDefinitionMap(meta) {
31715
31715
  throw new Error('Invalid path! Local compilation mode should not get into the partial compilation path');
31716
31716
  }
31717
31717
  definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$1));
31718
- definitionMap.set('version', literal('17.0.0'));
31718
+ definitionMap.set('version', literal('17.0.1'));
31719
31719
  definitionMap.set('ngImport', importExpr(Identifiers.core));
31720
31720
  definitionMap.set('type', meta.type.value);
31721
31721
  // We only generate the keys in the metadata if the arrays contain values.
@@ -31766,7 +31766,7 @@ function compileDeclarePipeFromMetadata(meta) {
31766
31766
  function createPipeDefinitionMap(meta) {
31767
31767
  const definitionMap = new DefinitionMap();
31768
31768
  definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION));
31769
- definitionMap.set('version', literal('17.0.0'));
31769
+ definitionMap.set('version', literal('17.0.1'));
31770
31770
  definitionMap.set('ngImport', importExpr(Identifiers.core));
31771
31771
  // e.g. `type: MyPipe`
31772
31772
  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": "17.0.0",
3
+ "version": "17.0.1",
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": "7121d78c95eefc01c306503b22cc9c7526c50633"
18
+ "gitHead": "19967e7724c64143aa5a2c77f73006e7541c1fea"
19
19
  }