putout 41.7.0 → 41.7.2

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,26 @@
1
+ 2026.01.13, v41.7.2
2
+
3
+ fix:
4
+ - 2f3f2cefc putout: get rid of mock-require rules
5
+
6
+ 2026.01.13, v41.7.1
7
+
8
+ fix:
9
+ - df6cf03c7 @putout/plugin-nodejs: convert-commonjs-to-esm: commons: report
10
+ - 28cae316e @putout/plugin-nodejs: convert-commonjs-to-esm: report
11
+
12
+ feature:
13
+ - f6374d67c putout: @putout/plugin-tape v20.0.0
14
+ - 1a48e5ea5 @putout/plugin-tape: get rid of mock-require/mock-import
15
+ - 33f3aadbe @putout/plugin-tape: drop support of 🐊 < 41
16
+ - 1a17d4b06 @putout/plugin-nodejs: convert-commonjs-to-esm: require: top level
17
+ - 7038a9db4 @putout/plugin-nodejs: convert-commonjs-to-esm: exports: used
18
+ - 0d65118b2 @putout/plugin-new: remove-useless: simplify
19
+ - 94f1de79f @putout/engine-reporter: @putout/cli-keypress v4.0.0
20
+ - b9b13b2a5 eslint-plugin-putout: migrate to ESM
21
+ - 0f0f04386 @putout/processor-filesystem: @putout/cli-filesystem v3.0.0
22
+ - e68a00f33 @putout/cli-filesystem: drop support of node < 22
23
+
1
24
  2026.01.11, v41.7.0
2
25
 
3
26
  feature:
@@ -11,6 +11,8 @@ const commonjs = () => ({
11
11
  match: {
12
12
  '*.js': {
13
13
  'nodejs/convert-esm-to-commonjs': 'on',
14
+ 'nodejs/add-missing-strict-mode': 'on',
15
+ 'nodejs/remove-useless-strict-mode': 'off',
14
16
  },
15
17
  '.eslintrc.json': {
16
18
  'eslint': 'on',
@@ -23,10 +25,8 @@ const esm = () => ({
23
25
  match: {
24
26
  '*.js': {
25
27
  'nodejs/convert-commonjs-to-esm': 'on',
26
- 'nodejs/add-strict-mode': 'off',
27
- },
28
- '{test,*.spec.js}': {
29
- 'tape/convert-mock-require-to-mock-import': 'on',
28
+ 'nodejs/add-missing-strict-mode': 'off',
29
+ 'nodejs/remove-useless-strict-mode': 'on',
30
30
  },
31
31
  '.eslintrc.json': {
32
32
  'eslint': 'on',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "putout",
3
- "version": "41.7.0",
3
+ "version": "41.7.2",
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",
@@ -166,7 +166,7 @@
166
166
  "@putout/plugin-return": "^3.0.0",
167
167
  "@putout/plugin-simplify-ternary": "^9.0.0",
168
168
  "@putout/plugin-spread": "^1.0.0",
169
- "@putout/plugin-tape": "^19.0.0",
169
+ "@putout/plugin-tape": "^20.0.0",
170
170
  "@putout/plugin-try-catch": "^7.0.0",
171
171
  "@putout/plugin-types": "^8.0.0",
172
172
  "@putout/plugin-typescript": "^13.0.0",
package/putout.json CHANGED
@@ -138,8 +138,7 @@
138
138
  "tape": "on"
139
139
  },
140
140
  "*.mjs": {
141
- "nodejs/convert-commonjs-to-esm": "on",
142
- "tape/convert-mock-require-to-mock-import": "on"
141
+ "nodejs/convert-commonjs-to-esm": "on"
143
142
  },
144
143
  "*.mts": {
145
144
  "typescript/convert-commonjs-to-esm": "on"