putout 40.10.0 → 40.12.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 +28 -1
- package/package.json +4 -4
- package/putout.json +2 -1
package/ChangeLog
CHANGED
|
@@ -1,3 +1,30 @@
|
|
|
1
|
+
2025.10.27, v40.12.0
|
|
2
|
+
|
|
3
|
+
feature:
|
|
4
|
+
- a6bdae7aa putout: @putout/plugin-convert-array-copy-to-slice v4.0.0
|
|
5
|
+
- 386ef04d7 @putout/plugin-convert-array-copy-to-slice: drop support of 🐊 < 40
|
|
6
|
+
- 30cec8e4f @putout/plugin-convert-array-copy-to-slice: exclude ternary
|
|
7
|
+
- 2f08e264b @putout/plugin-remove-useless-spread: array: ternary
|
|
8
|
+
- fa9e004ff @putout/plugin-esm: merge-declaration-with-export: exclude: require
|
|
9
|
+
- bf9521819 @putout/plugin-nodejs: group-require-by-id: esm/merge-declaration-with-export: improve support
|
|
10
|
+
- dc8b16b5d @putout/engine-parser: do not produce tokens without a need
|
|
11
|
+
- b19a9ef4d @putout/plugin-github: setup-node: v6
|
|
12
|
+
- beceab4b0 @putout/plugin-github: update-actions: checkout: v5
|
|
13
|
+
- 0eecd1c21 @putout/plugin-github: install-bun: update to v2
|
|
14
|
+
- e9aee85e1 @putout/plugin-github: update-actions: oven-sh/setup-bun
|
|
15
|
+
|
|
16
|
+
2025.10.17, v40.11.0
|
|
17
|
+
|
|
18
|
+
feature:
|
|
19
|
+
- d64c3c754 putout: @putout/cli-cache v6.0.0
|
|
20
|
+
- 2e89f7b03 @putout/cli-cache: drop support of node < 20
|
|
21
|
+
- 1fbe5909a putout: @putout/plugin-github v17.0.0
|
|
22
|
+
- 02a2ec796 @putout/plugin-github: set-node-versions: improve
|
|
23
|
+
- dc0a7efb8 putout: github: set-node-versions: v25 (https://nodejs.org/en/blog/release/v25.0.0)
|
|
24
|
+
- b0d89c8f3 @putout/cli-cache: file-entry-cache v11.1.0
|
|
25
|
+
- 929317c78 @putout/plugin-github: set-node-version: v25
|
|
26
|
+
- c83b90943 @putout/plugin-convert-object-assign-to-merge-spread v7.0.0
|
|
27
|
+
|
|
1
28
|
2025.10.09, v40.10.0
|
|
2
29
|
|
|
3
30
|
fix:
|
|
@@ -6,7 +33,7 @@ fix:
|
|
|
6
33
|
- 3bd8dd428 @putout/operator-jsx: removeClassName: space
|
|
7
34
|
|
|
8
35
|
feature:
|
|
9
|
-
- 13f36e88b
|
|
36
|
+
- 13f36e88b @putout/plugin-convert-object-assign-to-merge-spread v7.0.0
|
|
10
37
|
- 6b9b30bb8 @putout/plugin-convert-object-assign-to-merge-spread: drop support of 🐊 < 40
|
|
11
38
|
- cdbed49da @putout/plugin-convert-object-assign-to-merge-spread: spead -> spread
|
|
12
39
|
- 038df3bc5 @putout/eslint-flat: @eslint/config-helpers v0.4.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "putout",
|
|
3
|
-
"version": "40.
|
|
3
|
+
"version": "40.12.0",
|
|
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
|
},
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"@putout/babel": "^4.0.1",
|
|
55
|
-
"@putout/cli-cache": "^
|
|
55
|
+
"@putout/cli-cache": "^6.0.0",
|
|
56
56
|
"@putout/cli-choose-formatter": "^5.0.0",
|
|
57
57
|
"@putout/cli-keypress": "^3.0.0",
|
|
58
58
|
"@putout/cli-match": "^2.0.0",
|
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
"@putout/plugin-conditions": "^8.0.0",
|
|
103
103
|
"@putout/plugin-convert-apply-to-spread": "^4.0.0",
|
|
104
104
|
"@putout/plugin-convert-arguments-to-rest": "^4.0.0",
|
|
105
|
-
"@putout/plugin-convert-array-copy-to-slice": "^
|
|
105
|
+
"@putout/plugin-convert-array-copy-to-slice": "^4.0.0",
|
|
106
106
|
"@putout/plugin-convert-concat-to-flat": "^1.0.0",
|
|
107
107
|
"@putout/plugin-convert-const-to-let": "^5.0.0",
|
|
108
108
|
"@putout/plugin-convert-expression-to-params": "^1.0.0",
|
|
@@ -125,7 +125,7 @@
|
|
|
125
125
|
"@putout/plugin-filesystem": "^11.0.0",
|
|
126
126
|
"@putout/plugin-for-of": "^9.0.0",
|
|
127
127
|
"@putout/plugin-generators": "^2.0.0",
|
|
128
|
-
"@putout/plugin-github": "^
|
|
128
|
+
"@putout/plugin-github": "^17.0.0",
|
|
129
129
|
"@putout/plugin-gitignore": "^6.0.0",
|
|
130
130
|
"@putout/plugin-labels": "^2.0.0",
|
|
131
131
|
"@putout/plugin-logical-expressions": "^8.0.0",
|