Skip to content

Commit 5d474d5

Browse files
Merge branch 'feature/add-directory-support' of https://dev.azure.com/snydertech/snyder-apps/_git/nx-ddd-plugin into feature/add-directory-support
2 parents 44756f0 + 31c17cc commit 5d474d5

File tree

3 files changed

+79
-13729
lines changed

3 files changed

+79
-13729
lines changed

libs/ddd/src/schematics/utils/update-dep-const.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,15 @@ export function updateDepConst(
1313
if (host.exists('.eslintrc.json')) {
1414
filePath = '.eslintrc.json';
1515
rule = '@nrwl/nx/enforce-module-boundaries';
16+
context.logger.info(
17+
'Found .eslintrc.json'
18+
);
1619
} else if (host.exists('.eslintrc')) {
1720
filePath = '.eslintrc';
1821
rule = '@nrwl/nx/enforce-module-boundaries';
22+
context.logger.info(
23+
'Did not find .eslintrc.json but found .eslintrc'
24+
);
1925
} else {
2026
context.logger.info(
2127
'Cannot add linting rules: linting config file does not exist'

0 commit comments

Comments
 (0)