putout 35.4.1 → 35.4.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,12 @@
1
+ 2024.02.17, v35.4.2
2
+
3
+ fix:
4
+ - ef84e4a85 @putout/plugin-nodejs: strict-mode
5
+
6
+ feature:
7
+ - 001606b26 putout: @putout/plugin-nodejs v11.0.0
8
+ - 66877eb41 @putout/plugin-nodejs: drop support of 🐊 < 35
9
+
1
10
  2024.02.16, v35.4.1
2
11
 
3
12
  fix:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "putout",
3
- "version": "35.4.1",
3
+ "version": "35.4.2",
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",
@@ -126,7 +126,7 @@
126
126
  "@putout/plugin-merge-duplicate-imports": "^11.0.0",
127
127
  "@putout/plugin-montag": "^2.0.0",
128
128
  "@putout/plugin-new": "^3.0.1",
129
- "@putout/plugin-nodejs": "^10.0.0",
129
+ "@putout/plugin-nodejs": "^11.0.0",
130
130
  "@putout/plugin-npmignore": "^3.0.0",
131
131
  "@putout/plugin-package-json": "^7.0.0",
132
132
  "@putout/plugin-promises": "^14.0.0",
package/putout.json CHANGED
@@ -15,12 +15,12 @@
15
15
  ],
16
16
  "match": {
17
17
  "*.{mjs,ts,tsx,mts}": {
18
- "nodejs/remove-strict-mode": "on",
19
- "nodejs/add-strict-mode": "off"
18
+ "nodejs/remove-useless-strict-mode": "on",
19
+ "nodejs/add-missing-strict-mode": "off"
20
20
  },
21
21
  "*.{jsx,js,cjs}": {
22
- "nodejs/add-strict-mode": "on",
23
- "nodejs/remove-strict-mode": "on"
22
+ "nodejs/add-missing-strict-mode": "on",
23
+ "nodejs/remove-useless-strict-mode": "on"
24
24
  },
25
25
  "{.,}putout.json": {
26
26
  "putout-config": "on"
@@ -159,8 +159,8 @@
159
159
  "npmignore": "off",
160
160
  "github": "off",
161
161
  "tape": "off",
162
- "nodejs/add-strict-mode": "off",
163
- "nodejs/remove-strict-mode": "off",
162
+ "nodejs/add-missing-strict-mode": "off",
163
+ "nodejs/remove-useless-strict-mode": "off",
164
164
  "browserlist": "off",
165
165
  "filesystem": "off"
166
166
  },