putout 33.8.1 → 33.9.1
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 +25 -0
- package/package.json +2 -2
- package/putout.json +3 -1
package/ChangeLog
CHANGED
|
@@ -1,3 +1,28 @@
|
|
|
1
|
+
2023.11.21, v33.9.1
|
|
2
|
+
|
|
3
|
+
feature:
|
|
4
|
+
- a9bd7f13b putout: @putout/plugin-convert-quotes-to-backticks v3.0.0
|
|
5
|
+
- a66edf428 @putout/plugin-convert-quotes-to-backtics: drop support of 🐊 < 33
|
|
6
|
+
- 1ea125b4c @putout/plugin-convert-quotes-to-backticks: exclude template variables
|
|
7
|
+
- 290d901fc @putout/operator-filesystem: findFile: couple masks
|
|
8
|
+
- d56d88fe1 @putout/plugin-filesystem: move out renameFileByMask
|
|
9
|
+
- 5ec1f7a73 @putout/plugin-filesystem: rename-file: add mask
|
|
10
|
+
- 60ac0ac18 @putout/operator-filesystem: renameFile: handle slashes
|
|
11
|
+
|
|
12
|
+
2023.11.20, v33.9.0
|
|
13
|
+
|
|
14
|
+
fix:
|
|
15
|
+
- fc9f6ca66 @putout/plugin-filesystem: rename-test-to-spec: report
|
|
16
|
+
- 3c62be182 @putout/operator-match-files: rm useless @putout/printer
|
|
17
|
+
|
|
18
|
+
feature:
|
|
19
|
+
- 9eff5bae8 @putout/plugin-filesystem: rename-test-to-spec: add
|
|
20
|
+
- 4a3638d02 putout: filesystem: enable only for '.filesystem.json'
|
|
21
|
+
- 7f1805247 @putout/plugin-filesystem: rename-spec-to-test: add
|
|
22
|
+
- 55e5a2740 @putout/plugin-putout: declare: getFilename: add
|
|
23
|
+
- 18a153ff1 @putout/plugin-putout: add-push: referenced
|
|
24
|
+
- 1d9f638b2 @putout/plugin-putout: replace-test-message: transform: add support of no replace
|
|
25
|
+
|
|
1
26
|
2023.11.18, v33.8.1
|
|
2
27
|
|
|
3
28
|
feature:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "putout",
|
|
3
|
-
"version": "33.
|
|
3
|
+
"version": "33.9.1",
|
|
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",
|
|
@@ -98,7 +98,7 @@
|
|
|
98
98
|
"@putout/plugin-convert-object-assign-to-merge-spread": "^6.0.0",
|
|
99
99
|
"@putout/plugin-convert-object-entries-to-array-entries": "^3.0.0",
|
|
100
100
|
"@putout/plugin-convert-optional-to-logical": "^3.0.0",
|
|
101
|
-
"@putout/plugin-convert-quotes-to-backticks": "^
|
|
101
|
+
"@putout/plugin-convert-quotes-to-backticks": "^3.0.0",
|
|
102
102
|
"@putout/plugin-convert-template-to-string": "^1.0.0",
|
|
103
103
|
"@putout/plugin-convert-to-arrow-function": "^4.0.0",
|
|
104
104
|
"@putout/plugin-declare": "^2.0.0",
|
package/putout.json
CHANGED
|
@@ -31,6 +31,7 @@
|
|
|
31
31
|
"remove-empty/import": "off"
|
|
32
32
|
},
|
|
33
33
|
".filesystem.json": {
|
|
34
|
+
"filesystem": "on",
|
|
34
35
|
"nodejs/cjs-file": "on",
|
|
35
36
|
"nodejs/mjs-file": "on"
|
|
36
37
|
},
|
|
@@ -153,7 +154,8 @@
|
|
|
153
154
|
"tape": "off",
|
|
154
155
|
"strict-mode": "off",
|
|
155
156
|
"tape/convert-mock-require-to-mock-import": "off",
|
|
156
|
-
"browserlist": "off"
|
|
157
|
+
"browserlist": "off",
|
|
158
|
+
"filesystem": "off"
|
|
157
159
|
},
|
|
158
160
|
"plugins": [
|
|
159
161
|
"apply-at",
|