@putout/plugin-putout 25.0.0 → 25.0.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/README.md CHANGED
@@ -98,7 +98,7 @@ npm i @putout/plugin-putout -D
98
98
  "putout/apply-create-nested-directory": "on",
99
99
  "putout/apply-async-formatter": "on",
100
100
  "putout/apply-declare": "on",
101
- "putout/apply-exports": "on",
101
+ "putout/apply-exports": "off",
102
102
  "putout/apply-exports-to-add-args": "on",
103
103
  "putout/apply-exports-to-match-files": "on",
104
104
  "putout/apply-exports-to-rename-files": "on",
@@ -470,13 +470,13 @@ Possible configuration:
470
470
  ```json
471
471
  {
472
472
  "rules": {
473
- "putout/apply-exports": {
473
+ "putout/apply-exports": ["on", {
474
474
  "addArgs": [
475
475
  "report",
476
476
  "fix",
477
477
  "scan"
478
478
  ]
479
- }
479
+ }]
480
480
  }
481
481
  }
482
482
  ```
package/lib/index.js CHANGED
@@ -135,5 +135,5 @@ export const rules = {
135
135
  'apply-report': applyReport,
136
136
  'apply-exports-to-match-files': applyExportsToMatchFiles,
137
137
  'apply-exports-to-rename-files': applyExportsToRenameFiles,
138
- 'apply-exports': applyExports,
138
+ 'apply-exports': ['off', applyExports],
139
139
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@putout/plugin-putout",
3
- "version": "25.0.0",
3
+ "version": "25.0.1",
4
4
  "type": "module",
5
5
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
6
6
  "description": "🐊Putout plugin helps with plugins development",