putout 35.4.0 → 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.
Files changed (3) hide show
  1. package/ChangeLog +26 -0
  2. package/package.json +3 -3
  3. package/putout.json +6 -6
package/ChangeLog CHANGED
@@ -1,3 +1,29 @@
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
+
10
+ 2024.02.16, v35.4.1
11
+
12
+ fix:
13
+ - 50c100fb5 @putout/cli-choose: vim: drop h, l
14
+
15
+ feature:
16
+ - d823a41e3 putout: @putout/cli-choose-formatter v4.0.0
17
+ - e0c1a85ce @putout/engine-reporter: @putout/cli-choose-formatter v4.0.0
18
+ - f0d7e599e @putout/cli-choose-formatter: @putout/cli-choose v2.0.0
19
+ - 04022b1ae @putout/cli-choose-formatter: drop support of 🐊 < 35
20
+ - 9a1d41da7 @putout/cli-choose: drop support of node < 18
21
+ - 03c48befd @putotu/plugin-filesystem: convert-simple-filesystem-to-filesystem: add ability to handle absense of directory
22
+ - bea56d25c @putout/plugin-filesystem: read-all-files: add mask
23
+ - cb0501571 @putout/plugin-minify: merge-variables: exclude SwitchCase (coderaiser/minify#119)
24
+ - 7d902eb50 @putout/plugin-minify: merge-variables: exclude NewExpression (coderaiser/minify#119)
25
+ - 9290bef1d @putout/plugin-remove-useless-array: Traverser -> Replacer
26
+
1
27
  2024.02.14, v35.4.0
2
28
 
3
29
  feature:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "putout",
3
- "version": "35.4.0",
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",
@@ -52,7 +52,7 @@
52
52
  "dependencies": {
53
53
  "@putout/babel": "^2.0.0",
54
54
  "@putout/cli-cache": "^3.0.0",
55
- "@putout/cli-choose-formatter": "^3.0.0",
55
+ "@putout/cli-choose-formatter": "^4.0.0",
56
56
  "@putout/cli-keypress": "^2.0.0",
57
57
  "@putout/cli-match": "^2.0.0",
58
58
  "@putout/cli-ruler": "^3.0.0",
@@ -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
  },