@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
|
@@ -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