@angular/core 12.0.4 → 12.0.5

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.
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v12.0.4
2
+ * @license Angular v12.0.5
3
3
  * (c) 2010-2021 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v12.0.4
2
+ * @license Angular v12.0.5
3
3
  * (c) 2010-2021 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -1236,22 +1236,22 @@
1236
1236
  * @codeGenApi
1237
1237
  */
1238
1238
  function ɵɵdefineNgModule(def) {
1239
- var res = {
1240
- type: def.type,
1241
- bootstrap: def.bootstrap || EMPTY_ARRAY,
1242
- declarations: def.declarations || EMPTY_ARRAY,
1243
- imports: def.imports || EMPTY_ARRAY,
1244
- exports: def.exports || EMPTY_ARRAY,
1245
- transitiveCompileScopes: null,
1246
- schemas: def.schemas || null,
1247
- id: def.id || null,
1248
- };
1249
- if (def.id != null) {
1250
- noSideEffects(function () {
1239
+ return noSideEffects(function () {
1240
+ var res = {
1241
+ type: def.type,
1242
+ bootstrap: def.bootstrap || EMPTY_ARRAY,
1243
+ declarations: def.declarations || EMPTY_ARRAY,
1244
+ imports: def.imports || EMPTY_ARRAY,
1245
+ exports: def.exports || EMPTY_ARRAY,
1246
+ transitiveCompileScopes: null,
1247
+ schemas: def.schemas || null,
1248
+ id: def.id || null,
1249
+ };
1250
+ if (def.id != null) {
1251
1251
  autoRegisterModuleById[def.id] = def.type;
1252
- });
1253
- }
1254
- return res;
1252
+ }
1253
+ return res;
1254
+ });
1255
1255
  }
1256
1256
  /**
1257
1257
  * Adds the module metadata that is necessary to compute the module's transitive scope to an
@@ -22038,7 +22038,7 @@
22038
22038
  /**
22039
22039
  * @publicApi
22040
22040
  */
22041
- var VERSION = new Version('12.0.4');
22041
+ var VERSION = new Version('12.0.5');
22042
22042
 
22043
22043
  /**
22044
22044
  * @license