worsier 2.5.0 → 2.6.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/README.md +2 -0
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -14,6 +14,8 @@ pnpm exec worsier --write .
|
|
|
14
14
|
|
|
15
15
|
The CLI uses its opinionated defaults without a configuration file. An optional `worsier.jsonc`
|
|
16
16
|
can override them; run `pnpm exec worsier --init` to create the complete typed configuration.
|
|
17
|
+
Directory discovery skips `.git`, `node_modules`, and Wrangler's generated
|
|
18
|
+
`worker-configuration.d.ts`. Pass an ignored file explicitly when you do want Worsier to process it.
|
|
17
19
|
|
|
18
20
|
By default, every nonempty TypeScript interface is expanded with one member per line. Set
|
|
19
21
|
`rules.interfaceLayout` to a member threshold from `0` through `4294967295`, or to `"off"` to
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "worsier",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.6.0",
|
|
4
4
|
"description": "A focused JavaScript and TypeScript import, interface-layout, semicolon, trailing-comma, and statement-boundary formatter powered by Rust",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -49,14 +49,14 @@
|
|
|
49
49
|
]
|
|
50
50
|
},
|
|
51
51
|
"optionalDependencies": {
|
|
52
|
-
"worsier-darwin-arm64": "2.
|
|
53
|
-
"worsier-win32-arm64-msvc": "2.
|
|
54
|
-
"worsier-linux-arm64-gnu": "2.
|
|
55
|
-
"worsier-linux-arm64-musl": "2.
|
|
56
|
-
"worsier-darwin-x64": "2.
|
|
57
|
-
"worsier-win32-x64-msvc": "2.
|
|
58
|
-
"worsier-linux-x64-gnu": "2.
|
|
59
|
-
"worsier-linux-x64-musl": "2.
|
|
52
|
+
"worsier-darwin-arm64": "2.6.0",
|
|
53
|
+
"worsier-win32-arm64-msvc": "2.6.0",
|
|
54
|
+
"worsier-linux-arm64-gnu": "2.6.0",
|
|
55
|
+
"worsier-linux-arm64-musl": "2.6.0",
|
|
56
|
+
"worsier-darwin-x64": "2.6.0",
|
|
57
|
+
"worsier-win32-x64-msvc": "2.6.0",
|
|
58
|
+
"worsier-linux-x64-gnu": "2.6.0",
|
|
59
|
+
"worsier-linux-x64-musl": "2.6.0"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
62
|
"@types/node": "26.2.0",
|