@tombi-toml/tombi 0.6.25 → 0.6.27
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/package.json +9 -9
- package/README.md +0 -51
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tombi-toml/tombi",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.27",
|
|
4
4
|
"description": "🦅 TOML Toolkit 🦅",
|
|
5
5
|
"bin": {
|
|
6
6
|
"tombi": "bin/tombi"
|
|
@@ -40,13 +40,13 @@
|
|
|
40
40
|
"provenance": true
|
|
41
41
|
},
|
|
42
42
|
"optionalDependencies": {
|
|
43
|
-
"@tombi-toml/cli-win32-x64": "0.6.
|
|
44
|
-
"@tombi-toml/cli-win32-arm64": "0.6.
|
|
45
|
-
"@tombi-toml/cli-darwin-x64": "0.6.
|
|
46
|
-
"@tombi-toml/cli-darwin-arm64": "0.6.
|
|
47
|
-
"@tombi-toml/cli-linux-x64": "0.6.
|
|
48
|
-
"@tombi-toml/cli-linux-arm64": "0.6.
|
|
49
|
-
"@tombi-toml/cli-linux-x64-musl": "0.6.
|
|
50
|
-
"@tombi-toml/cli-linux-arm64-musl": "0.6.
|
|
43
|
+
"@tombi-toml/cli-win32-x64": "0.6.27",
|
|
44
|
+
"@tombi-toml/cli-win32-arm64": "0.6.27",
|
|
45
|
+
"@tombi-toml/cli-darwin-x64": "0.6.27",
|
|
46
|
+
"@tombi-toml/cli-darwin-arm64": "0.6.27",
|
|
47
|
+
"@tombi-toml/cli-linux-x64": "0.6.27",
|
|
48
|
+
"@tombi-toml/cli-linux-arm64": "0.6.27",
|
|
49
|
+
"@tombi-toml/cli-linux-x64-musl": "0.6.27",
|
|
50
|
+
"@tombi-toml/cli-linux-arm64-musl": "0.6.27"
|
|
51
51
|
}
|
|
52
52
|
}
|
package/README.md
DELETED
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
# tombi
|
|
2
|
-
|
|
3
|
-
🦅 Rust binary installer for tombi TOML toolkit
|
|
4
|
-
|
|
5
|
-
## Overview
|
|
6
|
-
|
|
7
|
-
This package provides a way to install the Rust-built tombi binary through npm. The appropriate binary for your platform is automatically downloaded during installation.
|
|
8
|
-
|
|
9
|
-
## Installation
|
|
10
|
-
|
|
11
|
-
```
|
|
12
|
-
npm install -g tombi
|
|
13
|
-
```
|
|
14
|
-
|
|
15
|
-
After installation, the `tombi` command becomes available globally.
|
|
16
|
-
|
|
17
|
-
## Usage
|
|
18
|
-
|
|
19
|
-
### Format
|
|
20
|
-
|
|
21
|
-
Format TOML files:
|
|
22
|
-
|
|
23
|
-
```
|
|
24
|
-
tombi format path/to/file.toml
|
|
25
|
-
```
|
|
26
|
-
|
|
27
|
-
Use the `-i` option to edit files in place:
|
|
28
|
-
|
|
29
|
-
```
|
|
30
|
-
tombi format -i path/to/file.toml
|
|
31
|
-
```
|
|
32
|
-
|
|
33
|
-
### Lint
|
|
34
|
-
|
|
35
|
-
Lint TOML files:
|
|
36
|
-
|
|
37
|
-
```
|
|
38
|
-
tombi lint path/to/file.toml
|
|
39
|
-
```
|
|
40
|
-
|
|
41
|
-
Use the `--fix` option to automatically fix issues when possible:
|
|
42
|
-
|
|
43
|
-
```
|
|
44
|
-
tombi lint --fix path/to/file.toml
|
|
45
|
-
```
|
|
46
|
-
|
|
47
|
-
## Supported Platforms
|
|
48
|
-
|
|
49
|
-
- macOS (x86_64, aarch64)
|
|
50
|
-
- Linux (x86_64)
|
|
51
|
-
- Windows (x86_64)
|