putout 34.3.0 → 34.4.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 +19 -0
- package/lib/cli/index.js +1 -1
- package/package.json +1 -1
package/ChangeLog
CHANGED
|
@@ -1,3 +1,22 @@
|
|
|
1
|
+
2023.12.22, v34.4.0
|
|
2
|
+
|
|
3
|
+
feature:
|
|
4
|
+
- 9ad60e41c putout: -i: improve
|
|
5
|
+
- 658e59103 @putout/plugin-filesystem: convert-simple-filesystem-to-filesystem: simplify
|
|
6
|
+
- bac19321a @putout/operator-filesystem: createFile
|
|
7
|
+
- 991448520 @putout/operator-filesystem: createFile with no content
|
|
8
|
+
- 5bdb9288f @putout/operator-filesystem: getFileContent: add
|
|
9
|
+
- 3dc73e9b6 @putout/operator-filesystem: writeFileContent: emoji
|
|
10
|
+
- b7d9c9028 @putout/plugin-filesystem: replace-cwd: from is root
|
|
11
|
+
- c6ddc7fc9 @putout/pluginf-filesystem: export replace-cwd
|
|
12
|
+
- c325ed4e9 @putout/plugin-react-hooks: drop support of node < 18
|
|
13
|
+
- 4f8af0c0b @putout/plugin-react-hooks: declare: useMemo
|
|
14
|
+
- eaa9871c6 @putout/plugin-remove-useless-escape: double quotes inside template
|
|
15
|
+
- 9ab30399d @putout/plugin-filesystem: write-all-files: progress: add
|
|
16
|
+
- f07474267 @putout/plugin-filesystem: replace-cwd: from root
|
|
17
|
+
- 49fa0ab73 @putout/plugin-filesystem: replace-cwd: add progress
|
|
18
|
+
- 313803316 @putout/test: progressWithOptions
|
|
19
|
+
|
|
1
20
|
2023.12.21, v34.3.0
|
|
2
21
|
|
|
3
22
|
feature:
|
package/lib/cli/index.js
CHANGED
|
@@ -178,7 +178,7 @@ module.exports = async ({argv, halt, log, write, logError, readFile, writeFile})
|
|
|
178
178
|
if (args.interactive) {
|
|
179
179
|
const {chooseFormatter} = await simpleImport('@putout/cli-choose-formatter');
|
|
180
180
|
|
|
181
|
-
newFormatter = await chooseFormatter(defaultFormatter, keys(dependencies));
|
|
181
|
+
[newFormatter] = await chooseFormatter(defaultFormatter, keys(dependencies));
|
|
182
182
|
|
|
183
183
|
if (!newFormatter)
|
|
184
184
|
return exit(INTERACTIVE_CANCELED);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "putout",
|
|
3
|
-
"version": "34.
|
|
3
|
+
"version": "34.4.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",
|