@angular-eslint/builder 13.1.1-alpha.2 → 13.1.1-alpha.20

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/dist/lint.impl.js CHANGED
@@ -70,7 +70,7 @@ async function run(options, context) {
70
70
  * log (even when no results) because different formatters handled the
71
71
  * "no results" case differently.
72
72
  */
73
- const formattedResults = formatter.format(finalLintResults);
73
+ const formattedResults = await formatter.format(finalLintResults);
74
74
  if (options.outputFile) {
75
75
  const pathToOutputFile = (0, path_1.join)(context.root, options.outputFile);
76
76
  (0, create_directory_1.createDirectory)((0, path_1.dirname)(pathToOutputFile));
@@ -1,7 +1,11 @@
1
1
  "use strict";
2
2
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
3
  if (k2 === undefined) k2 = k;
4
- Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
5
9
  }) : (function(o, m, k, k2) {
6
10
  if (k2 === undefined) k2 = k;
7
11
  o[k2] = m[k];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular-eslint/builder",
3
- "version": "13.1.1-alpha.2+1ee158a",
3
+ "version": "13.1.1-alpha.20+0bf549b",
4
4
  "description": "Angular CLI builder for ESLint",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -25,5 +25,5 @@
25
25
  "eslint": "^7.0.0 || ^8.0.0",
26
26
  "typescript": "*"
27
27
  },
28
- "gitHead": "1ee158a55d80d839c4fe88f32aa79e74633984e8"
28
+ "gitHead": "0bf549b758a6921ff602136d9872e10bb924baf3"
29
29
  }