tombi 1.2.1 → 1.2.3
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/bin/tombi +6 -0
- package/package.json +10 -9
package/bin/tombi
CHANGED
|
@@ -34,6 +34,12 @@ const PLATFORMS = {
|
|
|
34
34
|
x64: "@tombi-toml/cli-linux-x64-musl/tombi",
|
|
35
35
|
arm64: "@tombi-toml/cli-linux-arm64-musl/tombi",
|
|
36
36
|
},
|
|
37
|
+
// "sunos" matches both Oracle Solaris and illumos, but we only publish
|
|
38
|
+
// binaries on illumos, not on Solaris. There doesn't appear to be a way to
|
|
39
|
+
// distinguish between the two over here.
|
|
40
|
+
sunos: {
|
|
41
|
+
x64: "@tombi-toml/cli-sunos-x64/tombi",
|
|
42
|
+
},
|
|
37
43
|
};
|
|
38
44
|
|
|
39
45
|
const binPath =
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tombi",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.3",
|
|
4
4
|
"description": "🦅 TOML Toolkit 🦅",
|
|
5
5
|
"bin": {
|
|
6
6
|
"tombi": "bin/tombi"
|
|
@@ -36,13 +36,14 @@
|
|
|
36
36
|
"provenance": true
|
|
37
37
|
},
|
|
38
38
|
"optionalDependencies": {
|
|
39
|
-
"@tombi-toml/cli-win32-x64": "1.2.
|
|
40
|
-
"@tombi-toml/cli-win32-arm64": "1.2.
|
|
41
|
-
"@tombi-toml/cli-darwin-x64": "1.2.
|
|
42
|
-
"@tombi-toml/cli-darwin-arm64": "1.2.
|
|
43
|
-
"@tombi-toml/cli-linux-x64": "1.2.
|
|
44
|
-
"@tombi-toml/cli-linux-arm64": "1.2.
|
|
45
|
-
"@tombi-toml/cli-linux-x64-musl": "1.2.
|
|
46
|
-
"@tombi-toml/cli-linux-arm64-musl": "1.2.
|
|
39
|
+
"@tombi-toml/cli-win32-x64": "1.2.3",
|
|
40
|
+
"@tombi-toml/cli-win32-arm64": "1.2.3",
|
|
41
|
+
"@tombi-toml/cli-darwin-x64": "1.2.3",
|
|
42
|
+
"@tombi-toml/cli-darwin-arm64": "1.2.3",
|
|
43
|
+
"@tombi-toml/cli-linux-x64": "1.2.3",
|
|
44
|
+
"@tombi-toml/cli-linux-arm64": "1.2.3",
|
|
45
|
+
"@tombi-toml/cli-linux-x64-musl": "1.2.3",
|
|
46
|
+
"@tombi-toml/cli-linux-arm64-musl": "1.2.3",
|
|
47
|
+
"@tombi-toml/cli-sunos-x64": "1.2.3"
|
|
47
48
|
}
|
|
48
49
|
}
|