tombi 1.2.1 → 1.2.4

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.
Files changed (2) hide show
  1. package/bin/tombi +6 -0
  2. 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.1",
3
+ "version": "1.2.4",
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.1",
40
- "@tombi-toml/cli-win32-arm64": "1.2.1",
41
- "@tombi-toml/cli-darwin-x64": "1.2.1",
42
- "@tombi-toml/cli-darwin-arm64": "1.2.1",
43
- "@tombi-toml/cli-linux-x64": "1.2.1",
44
- "@tombi-toml/cli-linux-arm64": "1.2.1",
45
- "@tombi-toml/cli-linux-x64-musl": "1.2.1",
46
- "@tombi-toml/cli-linux-arm64-musl": "1.2.1"
39
+ "@tombi-toml/cli-win32-x64": "1.2.4",
40
+ "@tombi-toml/cli-win32-arm64": "1.2.4",
41
+ "@tombi-toml/cli-darwin-x64": "1.2.4",
42
+ "@tombi-toml/cli-darwin-arm64": "1.2.4",
43
+ "@tombi-toml/cli-linux-x64": "1.2.4",
44
+ "@tombi-toml/cli-linux-arm64": "1.2.4",
45
+ "@tombi-toml/cli-linux-x64-musl": "1.2.4",
46
+ "@tombi-toml/cli-linux-arm64-musl": "1.2.4",
47
+ "@tombi-toml/cli-sunos-x64": "1.2.4"
47
48
  }
48
49
  }