putout 34.1.0 → 34.1.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.
package/ChangeLog CHANGED
@@ -1,3 +1,8 @@
1
+ 2023.12.15, v34.1.1
2
+
3
+ fix:
4
+ - 33880ca44 ignores: rm unused export
5
+
1
6
  2023.12.15, v34.1.0
2
7
 
3
8
  fix:
package/lib/ignores.js CHANGED
@@ -16,8 +16,6 @@ module.exports = (dirOpt, resolvedName, options = {}) => {
16
16
  return dirOpt && ignorer.ignores(relativeName);
17
17
  };
18
18
 
19
- module.exports.mergeIgnores = mergeIgnores;
20
-
21
19
  function mergeIgnores(ignores) {
22
20
  for (const [i, str] of ignores.entries()) {
23
21
  const positiveIndex = ignores.indexOf(positive(str));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "putout",
3
- "version": "34.1.0",
3
+ "version": "34.1.1",
4
4
  "type": "commonjs",
5
5
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
6
6
  "description": "🐊 Pluggable and configurable code transformer with built-in ESLint, Babel and support of js, jsx, typescript, flow, markdown, yaml and json",