@angular-devkit/core 12.0.0-rc.2 → 12.0.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular-devkit/core",
3
- "version": "12.0.0-rc.2",
3
+ "version": "12.0.2",
4
4
  "description": "Angular DevKit - Core Utility Library",
5
5
  "main": "src/index.js",
6
6
  "typings": "src/index.d.ts",
@@ -212,7 +212,7 @@ class CoreSchemaRegistry {
212
212
  let validator;
213
213
  try {
214
214
  this._currentCompilationSchemaInfo = schemaInfo;
215
- validator = await this._ajv.compileAsync(schema);
215
+ validator = this._ajv.compile(schema);
216
216
  }
217
217
  finally {
218
218
  this._currentCompilationSchemaInfo = undefined;