putout 42.10.4 → 42.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
CHANGED
|
@@ -1,3 +1,46 @@
|
|
|
1
|
+
2026.08.16, v42.12.0
|
|
2
|
+
|
|
3
|
+
fix:
|
|
4
|
+
- 5120440e0 @putout/plugin-sql: typos
|
|
5
|
+
- 56b5b9abe @putout/plugin-goreleaser: apply-formats
|
|
6
|
+
- db9efb962 @putout/plugin-goreleaser: apply-format-overrides: array
|
|
7
|
+
|
|
8
|
+
feature:
|
|
9
|
+
- 3b51696a2 @putout/processor-svelte: drop support of 🐊 < 42
|
|
10
|
+
- 693d152c8 @putout/processor-svelte: @putout/processor-css v13.0.0
|
|
11
|
+
- 8ead00d81 putout: @putout/processor-css v13.0.0
|
|
12
|
+
- cf81766c2 @putout/processor-css: drop support of 🐊 < 42
|
|
13
|
+
- 51d92ded2 @putout/processor-css: cosmiconfig v10.0.0
|
|
14
|
+
- 94c81c70f @putout/processor-toml: @decimalturn/toml-patch vundefined
|
|
15
|
+
- b1acf2d37 @putout/plugin-github: update-actions: actions/setup-node@7
|
|
16
|
+
- 01de95f68 @putout/plugin-github: update-actions: actions/checkout@7
|
|
17
|
+
- 118f55530 @putout/plugin-sql: convert-sqlite-to-postgresql: convert-auto-increment-to-identity: add
|
|
18
|
+
- 1f598fcef @putout/plugin-sql: convert-sqlite-to-postgresql: convert-last-insert-rowid-to-returning-id
|
|
19
|
+
- 0c29383c4 @putout/plugin-sql: apply-count: extend to all literals
|
|
20
|
+
- e969f6f5a @putout/test: extension: read fix
|
|
21
|
+
- 7500a759d @putout/plugin-for-of: map: assign: block
|
|
22
|
+
- 8b088b568 @putout/plugin-maybe: array: concat: add
|
|
23
|
+
- c3e30148a eslint-plugin-putout: rm eslint-v10 ponyfill
|
|
24
|
+
- 20d624479 @putout/plugin-putout: apply-fixture-name-to-message: comparePlaces
|
|
25
|
+
- ff4d891e9 @putout/eslint-config: use-isnan: off
|
|
26
|
+
- 952b7248c @putout/plugin-types: apply-is-nan: add
|
|
27
|
+
- 1d728e08e @putout/plugin-typescript: convert-empty-type-literal-to-record: add
|
|
28
|
+
- 8b36fe48b @putout/test: types: extend: rm
|
|
29
|
+
- 96233d1b3 @putout/operator-declare: ExportDefaultDeclaration: include back
|
|
30
|
+
- c292be5c5 @putout/operator-declare: ExportDefaultDeclaration: exclude
|
|
31
|
+
- 895af6c86 @putout/plugin-conditions: convert-switch-to-if: default: exclude
|
|
32
|
+
- c0f8054bf @putout/plugin-conditions: convert-switch-to-if: add
|
|
33
|
+
|
|
34
|
+
2026.07.31, v42.11.0
|
|
35
|
+
|
|
36
|
+
fix:
|
|
37
|
+
- 1613d2ac0 @putout/plugin-gorelease: apply-format-overrides: array
|
|
38
|
+
- a57cd0444 @putout/plugin-goreleaser: toml -> yaml
|
|
39
|
+
|
|
40
|
+
feature:
|
|
41
|
+
- 9ba89152a @putout/plugin-putout: parser-options: apply-module-type-rules: improve ts support
|
|
42
|
+
- ec0803932 @putout/plugin-goreleaser: add
|
|
43
|
+
|
|
1
44
|
2026.07.31, v42.10.4
|
|
2
45
|
|
|
3
46
|
fix:
|
|
@@ -9,7 +9,7 @@ export default ({type}, options) => {
|
|
|
9
9
|
|
|
10
10
|
const commonjs = () => ({
|
|
11
11
|
match: {
|
|
12
|
-
'*.js': {
|
|
12
|
+
'*.{js,ts}': {
|
|
13
13
|
'nodejs/convert-esm-to-commonjs': 'on',
|
|
14
14
|
'nodejs/add-missing-strict-mode': 'on',
|
|
15
15
|
'nodejs/remove-useless-strict-mode': 'off',
|
|
@@ -23,7 +23,7 @@ const commonjs = () => ({
|
|
|
23
23
|
|
|
24
24
|
const esm = () => ({
|
|
25
25
|
match: {
|
|
26
|
-
'*.js': {
|
|
26
|
+
'*.{js,ts}': {
|
|
27
27
|
'nodejs/convert-commonjs-to-esm': 'on',
|
|
28
28
|
'nodejs/add-missing-strict-mode': 'off',
|
|
29
29
|
'nodejs/remove-useless-strict-mode': 'on',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "putout",
|
|
3
|
-
"version": "42.
|
|
3
|
+
"version": "42.12.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",
|
|
@@ -180,7 +180,7 @@
|
|
|
180
180
|
"@putout/plugin-typescript": "^13.0.0",
|
|
181
181
|
"@putout/plugin-variables": "^2.0.0",
|
|
182
182
|
"@putout/plugin-webpack": "^4.0.0",
|
|
183
|
-
"@putout/processor-css": "^
|
|
183
|
+
"@putout/processor-css": "^13.0.0",
|
|
184
184
|
"@putout/processor-docker": "^1.0.0",
|
|
185
185
|
"@putout/processor-filesystem": "^8.0.0",
|
|
186
186
|
"@putout/processor-ignore": "^7.0.0",
|