@open-xchange/linter-presets 0.0.5 → 0.0.6

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
@@ -28,3 +28,7 @@
28
28
 
29
29
  - chore: [ESLint] documentation for option `restricted`
30
30
  - chore: bump dependencies
31
+
32
+ ## [0.0.6] - 2024-07-10
33
+
34
+ - fixed: [ESLint] type error in `env-project/no-invalid-modules`
@@ -80,7 +80,7 @@ export default {
80
80
  }
81
81
 
82
82
  // collect all globs for package members
83
- const packagesGlobs = Array.from(packagesMap, settings => settings.src).flat();
83
+ const packagesGlobs = Array.from(packagesMap.values(), settings => settings.src).flat();
84
84
 
85
85
  // resolve file name
86
86
  const packagePath = packageUpSync();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-xchange/linter-presets",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "description": "Configuration presets for ESLint and StyleLint",
5
5
  "repository": "https://gitlab.open-xchange.com/fspd/npm-packages/linter-presets",
6
6
  "license": "MIT",