@darraghor/eslint-plugin-nestjs-typed 3.19.0 → 3.19.1

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.
@@ -40,7 +40,7 @@ const checkNode = (node, decoratorName, propertyName, messageId, context) => {
40
40
  });
41
41
  }
42
42
  };
43
- function initialiseModuleMappings(sourcePath, filterFromPaths, context) {
43
+ function initializeModuleMappings(sourcePath, filterFromPaths, context) {
44
44
  const mappedSourceDirectory = nestProvidedInjectableMapper_1.default.detectDirectoryToScanForFiles(sourcePath, process.cwd());
45
45
  listOfPotentialNestModuleFiles = fileEnumerationWrapper_1.default.enumerateFiles(mappedSourceDirectory, [".ts"], filterFromPaths);
46
46
  nestModuleMap = nestProvidedInjectableMapper_1.default.parseFileList(listOfPotentialNestModuleFiles, context);
@@ -96,7 +96,7 @@ const rule = (0, createRule_1.createRule)({
96
96
  // unusedExports,
97
97
  } = context.options[0] || {};
98
98
  if (nestModuleMap === undefined || nestModuleMap.size === 0) {
99
- initialiseModuleMappings(src[0], filterFromPaths, context);
99
+ initializeModuleMappings(src[0], filterFromPaths, context);
100
100
  }
101
101
  return {
102
102
  // eslint-disable-next-line @typescript-eslint/naming-convention
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@darraghor/eslint-plugin-nestjs-typed",
3
- "version": "3.19.0",
3
+ "version": "3.19.1",
4
4
  "description": "Eslint rules for nestjs projects",
5
5
  "scripts": {
6
6
  "clean": "rm -Rf ./dist/",
@@ -19,6 +19,9 @@
19
19
  "main"
20
20
  ]
21
21
  },
22
+ "publishConfig": {
23
+ "provenance": true
24
+ },
22
25
  "homepage": "https://github.com/darraghoriordan/eslint-plugin-nestjs-typed",
23
26
  "repository": {
24
27
  "type": "git",