@angular-eslint/schematics 13.0.0 → 13.0.2-alpha.14

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,12 @@
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.0.1](https://github.com/angular-eslint/angular-eslint/compare/v13.0.0...v13.0.1) (2021-11-19)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **schematics:** auto update eslint-plugin-import as part of v13 ng update ([#836](https://github.com/angular-eslint/angular-eslint/issues/836)) ([705e83b](https://github.com/angular-eslint/angular-eslint/commit/705e83b6da8e3bf77bbf00305972024f9cffd11b))
11
+
6
12
  # [13.0.0](https://github.com/angular-eslint/angular-eslint/compare/v12.7.0...v13.0.0) (2021-11-18)
7
13
 
8
14
  ### Features
@@ -4,6 +4,7 @@ const schematics_1 = require("@angular-devkit/schematics");
4
4
  const dependencies_1 = require("../utils/dependencies");
5
5
  const updatedTypeScriptESLintVersion = '5.3.0';
6
6
  const updatedESLintVersion = '8.2.0';
7
+ const updatedESLintPluginImportVersion = '2.25.2';
7
8
  function migration() {
8
9
  return (0, schematics_1.chain)([
9
10
  (0, dependencies_1.updateDependencies)([
@@ -23,6 +24,10 @@ function migration() {
23
24
  packageName: 'eslint',
24
25
  version: `^${updatedESLintVersion}`,
25
26
  },
27
+ {
28
+ packageName: 'eslint-plugin-import',
29
+ version: updatedESLintPluginImportVersion,
30
+ },
26
31
  ]),
27
32
  ]);
28
33
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular-eslint/schematics",
3
- "version": "13.0.0",
3
+ "version": "13.0.2-alpha.14+c076753",
4
4
  "description": "Angular Schematics for angular-eslint",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -33,8 +33,8 @@
33
33
  "save": "devDependencies"
34
34
  },
35
35
  "dependencies": {
36
- "@angular-eslint/eslint-plugin": "13.0.0",
37
- "@angular-eslint/eslint-plugin-template": "13.0.0",
36
+ "@angular-eslint/eslint-plugin": "13.0.2-alpha.14+c076753",
37
+ "@angular-eslint/eslint-plugin-template": "13.0.2-alpha.14+c076753",
38
38
  "ignore": "5.1.9",
39
39
  "strip-json-comments": "3.1.1",
40
40
  "tmp": "0.2.1"
@@ -48,5 +48,5 @@
48
48
  "peerDependencies": {
49
49
  "@angular/cli": ">= 13.0.0 < 14.0.0"
50
50
  },
51
- "gitHead": "3c3f54614742941d39e2dae941febdee05525ff1"
51
+ "gitHead": "c0767532630c46f79364f5c27a8aa189a018e9f6"
52
52
  }