redput 1.10.0 → 1.11.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 +13 -0
- package/README.md +3 -3
- package/package.json +6 -6
package/ChangeLog
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
2023.10.12, v1.11.0
|
|
2
|
+
|
|
3
|
+
feature:
|
|
4
|
+
- 830b916 package: eslint-plugin-putout v20.0.0
|
|
5
|
+
- af20440 package: @putout/plugin-putout v15.1.0
|
|
6
|
+
- 6a6ea8b package: rendy v4.1.3
|
|
7
|
+
|
|
8
|
+
2023.09.14, v1.10.1
|
|
9
|
+
|
|
10
|
+
feature:
|
|
11
|
+
- e3ccdee package: putout v32.0.1
|
|
12
|
+
- b70891d package: @putout/plugin-remove-unused-variables v7.0.0
|
|
13
|
+
|
|
1
14
|
2023.09.05, v1.10.0
|
|
2
15
|
|
|
3
16
|
fix:
|
package/README.md
CHANGED
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
[BuildStatusIMGURL]: https://github.com/putoutjs/redput/actions/workflows/nodejs.yml/badge.svg
|
|
7
7
|
[LicenseURL]: https://tldrlegal.com/license/mit-license "MIT License"
|
|
8
8
|
[LicenseIMGURL]: https://img.shields.io/badge/license-MIT-317BF9.svg?style=flat
|
|
9
|
-
[CoverageURL]: https://coveralls.io/github/
|
|
10
|
-
[CoverageIMGURL]: https://coveralls.io/repos/
|
|
9
|
+
[CoverageURL]: https://coveralls.io/github/putoutjs/redput?branch=master
|
|
10
|
+
[CoverageIMGURL]: https://coveralls.io/repos/putoutjs/redput/badge.svg?branch=master&service=github
|
|
11
11
|
|
|
12
12
|
CLI tool to download source of a `rule` and `fixtures` from 🐊[**Putout Editor**](https://putout.cloudcmd.io/#/gist/33a75dce299788583a567e02f29828c8/7a97049f1c88ef9e3396d43b6a64246da0093670) and generate tests from it.
|
|
13
13
|
|
|
@@ -26,7 +26,7 @@ GITHUB_TOKEN=github-token redput [putout-editor-url]
|
|
|
26
26
|
`redput` determines where it located and does one of next things:
|
|
27
27
|
|
|
28
28
|
- if it finds `index.js` - creates rule inside nested plugin;
|
|
29
|
-
-
|
|
29
|
+
- creates directory with a plugin name and fills directories `lib`, `test` and `fixture`;
|
|
30
30
|
|
|
31
31
|
## License
|
|
32
32
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "redput",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.11.0",
|
|
4
4
|
"description": "CLI tool to convert source from 🐊Putout Editor to files",
|
|
5
5
|
"main": "lib/redput.js",
|
|
6
6
|
"bin": {
|
|
@@ -59,12 +59,12 @@
|
|
|
59
59
|
"dependencies": {
|
|
60
60
|
"@putout/plugin-convert-esm-to-commonjs": "^6.0.0",
|
|
61
61
|
"@putout/plugin-declare": "^2.0.1",
|
|
62
|
-
"@putout/plugin-putout": "^
|
|
63
|
-
"@putout/plugin-remove-unused-variables": "^
|
|
62
|
+
"@putout/plugin-putout": "^15.1.0",
|
|
63
|
+
"@putout/plugin-remove-unused-variables": "^7.0.0",
|
|
64
64
|
"node-fetch": "^3.3.2",
|
|
65
65
|
"octokit": "^3.1.0",
|
|
66
|
-
"putout": "^
|
|
67
|
-
"rendy": "^
|
|
66
|
+
"putout": "^32.0.1",
|
|
67
|
+
"rendy": "^4.1.3",
|
|
68
68
|
"try-to-catch": "^3.0.1"
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"escover": "^3.4.0",
|
|
74
74
|
"eslint": "^8.0.0",
|
|
75
75
|
"eslint-plugin-n": "^16.0.1",
|
|
76
|
-
"eslint-plugin-putout": "^
|
|
76
|
+
"eslint-plugin-putout": "^20.0.0",
|
|
77
77
|
"madrun": "^9.3.0",
|
|
78
78
|
"montag": "^1.2.1",
|
|
79
79
|
"nodemon": "^3.0.1",
|