@angular-eslint/builder 13.1.1-alpha.3 → 13.2.1-alpha.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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,10 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [13.2.0](https://github.com/angular-eslint/angular-eslint/compare/v13.1.0...v13.2.0) (2022-04-03)
7
+
8
+ **Note:** Version bump only for package @angular-eslint/builder
9
+
6
10
  # [13.1.0](https://github.com/angular-eslint/angular-eslint/compare/v13.0.1...v13.1.0) (2022-02-13)
7
11
 
8
12
  **Note:** Version bump only for package @angular-eslint/builder
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.3+bd747ba",
3
+ "version": "13.2.1-alpha.0+0be6f08",
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": "bd747ba0addf34fd3f23f0eedd94bbeea618a2ca"
28
+ "gitHead": "0be6f08baad4f9e1392a48d6e99233f51202b266"
29
29
  }