@angular-eslint/schematics 14.0.3-alpha.0 → 14.0.4-alpha.3
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
|
+
## [14.0.3](https://github.com/angular-eslint/angular-eslint/compare/v14.0.2...v14.0.3) (2022-08-23)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- **builder:** ensure package works with Angular 14.1.3 ([#1112](https://github.com/angular-eslint/angular-eslint/issues/1112)) ([b00ef2e](https://github.com/angular-eslint/angular-eslint/commit/b00ef2e0de8d3b541dfa963c4c1901bfa380c4b3))
|
|
11
|
+
|
|
6
12
|
## [14.0.2](https://github.com/angular-eslint/angular-eslint/compare/v14.0.1...v14.0.2) (2022-07-09)
|
|
7
13
|
|
|
8
14
|
**Note:** Version bump only for package @angular-eslint/schematics
|
|
@@ -97,7 +97,7 @@ function convertTSLintDisableCommentsForProject(projectName) {
|
|
|
97
97
|
let pathRoot = '';
|
|
98
98
|
// Default Angular CLI project at the root of the workspace
|
|
99
99
|
if (existingProjectConfig.root === '') {
|
|
100
|
-
pathRoot = 'src';
|
|
100
|
+
pathRoot = existingProjectConfig.sourceRoot || 'src';
|
|
101
101
|
}
|
|
102
102
|
else {
|
|
103
103
|
pathRoot = existingProjectConfig.root;
|
package/dist/library/schema.json
CHANGED
package/dist/utils.js
CHANGED
|
@@ -129,7 +129,7 @@ function addESLintTargetToProject(projectName, targetName) {
|
|
|
129
129
|
let lintFilePatternsRoot = '';
|
|
130
130
|
// Default Angular CLI project at the root of the workspace
|
|
131
131
|
if (existingProjectConfig.root === '') {
|
|
132
|
-
lintFilePatternsRoot = 'src';
|
|
132
|
+
lintFilePatternsRoot = existingProjectConfig.sourceRoot || 'src';
|
|
133
133
|
}
|
|
134
134
|
else {
|
|
135
135
|
lintFilePatternsRoot = existingProjectConfig.root;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular-eslint/schematics",
|
|
3
|
-
"version": "14.0.
|
|
3
|
+
"version": "14.0.4-alpha.3+36c62c3",
|
|
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": "14.0.
|
|
37
|
-
"@angular-eslint/eslint-plugin-template": "14.0.
|
|
36
|
+
"@angular-eslint/eslint-plugin": "14.0.4-alpha.3+36c62c3",
|
|
37
|
+
"@angular-eslint/eslint-plugin-template": "14.0.4-alpha.3+36c62c3",
|
|
38
38
|
"ignore": "5.2.0",
|
|
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": ">= 14.0.0 < 15.0.0"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "36c62c34098b4cf5b841e577038257b2110bf60a"
|
|
52
52
|
}
|