putout 41.16.0 → 41.18.0

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,49 @@
1
+ 2026.02.05, v41.18.0
2
+
3
+ feature:
4
+ - deeb07110 putout: @putout/plugin-remove-useless-map v3.0.0
5
+ - 0e289d049 @putout/plugin-remove-useless-object-from-entries: add
6
+ - 80b9f708a @putout/plugin-remove-useless-map: entries
7
+ - 90a189615 @putout/plugin-remove-useless-map: drop support of 🐊 < 41
8
+ - 1c8879ff4 @putout/plugin-math: apply-numeric-sperators: report
9
+ - 4777adc7c @putout/plugin-putout: replace-test-message: report with options -> transform with options
10
+ - 23abe0f63 @putout/plugin-regexp: apply-character-class: with optimize
11
+ - 8458c2585 @putout/plugin-putout-config: apply-esm: remove add-index-to-import
12
+
13
+ 2026.02.03, v41.17.0
14
+
15
+ fix:
16
+ - fbbb8faea @putout/plugin-nodejs: convert-top-level-return: report
17
+ - 75f5716e2 @putout/formatter-codeframe: column starts from 1
18
+ - 0538680bb @putout/operate: setLiteralValue: NumericLiteral
19
+ - a0c24113f @putout/plugin-esm: add-index-to-import: enable
20
+
21
+ feature:
22
+ - d063fa547 putout: @putout/plugin-esm v9.0.0
23
+ - d569b13b0 @putout/plugin-esm: add-index-to-import: rm
24
+ - 9f4b97a93 @putout/plugin-cloudcmd: convert-io-delete-to-io-remove: add
25
+ - 5ef26f923 @putout/plugin-cloudcmd: apply-init-module: add
26
+ - 66eca0063 @putout/plugin-cloudcmd: drop support of 🐊 < 41
27
+ - d14deeebb @putout/plugin-cloudcmd: convert-arrow-to-declaration: add
28
+ - f5578691b @putout/plugin-nodejs: convert-commonjs-to-esm: require: false positive: on css
29
+ - 480b87779 @putout/plugin-tape: declare: defineEnv
30
+ - 00b856fe8 @putout/plugin-esm: group-imports-by-source: css first
31
+ - ff220bd00 @putout/plugin-nodejs: remove-top-level-process-exit
32
+ - 989d56ad1 @putout/plugin-nodejs: remove-useless-process-exit: add
33
+ - 482640e4a @putout/plugin-nodejs: convert-top-level-return: arguments
34
+ - 0f5602d2e @putout/plugin-tape: apply-destructuring: rename
35
+ - e352fee27 @putout/engine-runner: get-position: column + 1
36
+ - e3b6bc596 @putout/plugin-madrun: set-lint-dot: report: drectory -> directory
37
+ - 710a2f639 @putout/eslint: column: 1
38
+ - cfb827aea @putout/operate: setLiteralValue: numericLiteral
39
+ - 352bfae16 @putout/plugin-putout: add-crawl-file: add
40
+ - 1d068ea06 @putout/plugin-esm: apply-name-to-imported-file: use crawlFile
41
+ - b050a2df6 @putout/engine-runner: scanner: crawlFile: add
42
+ - 946ce1af1 @putout/plugin-esm: apply-name-to-imported-file: export from
43
+ - 772b76f29 @putout/plugin-esm: add-index-to-import: export namespace
44
+ - 1e2ad0078 eslint-plugin-putout: @babel/eslint-parser v8.0.0-rc.1
45
+ - c6ad0dd0f @putout/engine-reporter: @putout/cli-choose-formatter v6.0.0
46
+
1
47
  2026.01.31, v41.16.0
2
48
 
3
49
  feature:
package/README.md CHANGED
@@ -42,7 +42,7 @@ Check out couple variants of plugins that does the same: [**linting debugger sta
42
42
  ```js
43
43
  'use strict';
44
44
 
45
- module.exports.report = () => 'Unexpected "debugger" statement';
45
+ module.exports.report = () => `Avoid 'debugger' statement`;
46
46
 
47
47
  module.exports.replace = () => ({
48
48
  debugger: '',
@@ -41,7 +41,7 @@ export const runReader = async (overrides) => {
41
41
  message: readError.message,
42
42
  position: {
43
43
  line: 1,
44
- column: 0,
44
+ column: 1,
45
45
  },
46
46
  });
47
47
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "putout",
3
- "version": "41.16.0",
3
+ "version": "41.18.0",
4
4
  "type": "module",
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",
@@ -113,7 +113,7 @@
113
113
  "@putout/plugin-declare-before-reference": "^9.0.0",
114
114
  "@putout/plugin-destructuring": "^1.0.0",
115
115
  "@putout/plugin-eslint": "^15.0.0",
116
- "@putout/plugin-esm": "^8.0.0",
116
+ "@putout/plugin-esm": "^9.0.0",
117
117
  "@putout/plugin-extract-sequence-expressions": "^4.0.0",
118
118
  "@putout/plugin-filesystem": "^12.0.0",
119
119
  "@putout/plugin-for-of": "^11.0.0",
@@ -156,7 +156,8 @@
156
156
  "@putout/plugin-remove-useless-delete": "^2.0.0",
157
157
  "@putout/plugin-remove-useless-escape": "^9.0.0",
158
158
  "@putout/plugin-remove-useless-functions": "^5.0.0",
159
- "@putout/plugin-remove-useless-map": "^2.0.0",
159
+ "@putout/plugin-remove-useless-map": "^3.0.0",
160
+ "@putout/plugin-remove-useless-object-from-entries": "^1.0.0",
160
161
  "@putout/plugin-remove-useless-operand": "^3.0.0",
161
162
  "@putout/plugin-remove-useless-push": "^2.0.0",
162
163
  "@putout/plugin-remove-useless-replace": "^2.0.0",
package/putout.json CHANGED
@@ -233,6 +233,7 @@
233
233
  "remove-useless-array",
234
234
  "remove-useless-array-constructor",
235
235
  "remove-useless-array-entries",
236
+ "remove-useless-object-from-entries",
236
237
  "remove-useless-continue",
237
238
  "remove-useless-delete",
238
239
  "remove-useless-operand",