endform 0.48.2 → 0.49.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.
Files changed (2) hide show
  1. package/bin/endform +4 -4
  2. package/package.json +5 -5
package/bin/endform CHANGED
@@ -49,8 +49,8 @@ const version = packageJson.version;
49
49
  // Define download URLs and binary names
50
50
  const MAC_ARM_URL = `https://cli.endform.dev/${version}/endform-aarch64-apple-darwin/endform`;
51
51
  const MAC_X86_URL = `https://cli.endform.dev/${version}/endform-x86_64-apple-darwin/endform`;
52
- const LINUX_ARM_URL = `https://cli.endform.dev/${version}/endform-aarch64-unknown-linux-gnu/endform`;
53
- const LINUX_X86_URL = `https://cli.endform.dev/${version}/endform-x86_64-unknown-linux-gnu/endform`;
52
+ const LINUX_ARM_URL = `https://cli.endform.dev/${version}/endform-aarch64-unknown-linux-musl/endform`;
53
+ const LINUX_X86_URL = `https://cli.endform.dev/${version}/endform-x86_64-unknown-linux-musl/endform`;
54
54
 
55
55
  // Get the appropriate URL and binary name based on platform and architecture
56
56
  const getDownloadInfo = () => {
@@ -67,8 +67,8 @@ const getDownloadInfo = () => {
67
67
  url: arch === "arm64" ? LINUX_ARM_URL : LINUX_X86_URL,
68
68
  binaryName:
69
69
  arch === "arm64"
70
- ? "endform-aarch64-unknown-linux-gnu"
71
- : "endform-x86_64-unknown-linux-gnu",
70
+ ? "endform-aarch64-unknown-linux-musl"
71
+ : "endform-x86_64-unknown-linux-musl",
72
72
  };
73
73
  };
74
74
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "endform",
3
- "version": "0.48.2",
3
+ "version": "0.49.0",
4
4
  "description": "Endform CLI",
5
5
  "repository": "https://github.com/endformdev/npm",
6
6
  "license": "UNLICENSED",
@@ -12,9 +12,9 @@
12
12
  "bin"
13
13
  ],
14
14
  "optionalDependencies": {
15
- "endform-darwin-arm64": "0.48.2",
16
- "endform-darwin-x86": "0.48.2",
17
- "endform-linux-arm64": "0.48.2",
18
- "endform-linux-x86": "0.48.2"
15
+ "endform-darwin-arm64": "0.49.0",
16
+ "endform-darwin-x86": "0.49.0",
17
+ "endform-linux-arm64": "0.49.0",
18
+ "endform-linux-x86": "0.49.0"
19
19
  }
20
20
  }