endform 0.72.0 → 0.74.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/bin/endform CHANGED
@@ -3,7 +3,7 @@
3
3
  * A simplified launcher for the Endform CLI.
4
4
  *
5
5
  * This script selects and executes the appropriate platform-specific binary.
6
- * It supports only macOS and Linux on x86 (x64) or arm64.
6
+ * It supports macOS and Linux on x86 (x64) or arm64.
7
7
  */
8
8
 
9
9
  const child_process = require("node:child_process");
@@ -38,7 +38,7 @@ const archSuffix = arch === "x64" ? "x86" : "arm64";
38
38
  // For example: "endform-darwin-x86" or "endform-linux-arm64"
39
39
  const packageName = `endform-${platform}-${archSuffix}`;
40
40
 
41
- // The binary is expected to reside at "bin/endform" inside the package.
41
+ // The binary is expected to reside in the package's "bin" directory.
42
42
  const binaryRelativePath = "bin/endform";
43
43
 
44
44
  // Get version from package.json
@@ -113,6 +113,7 @@ const downloadBinary = async ({ force } = {}) => {
113
113
  try {
114
114
  fs.renameSync(tmpPath, binaryPath);
115
115
  fs.chmodSync(binaryPath, 0o755);
116
+
116
117
  return binaryPath;
117
118
  } catch (err) {
118
119
  fs.unlink(tmpPath, () => {});
package/lib/index.d.ts CHANGED
@@ -158,6 +158,7 @@ export interface EndformConfig {
158
158
  * by remote runners.
159
159
  *
160
160
  * Trace propagation becomes enabled when this parameter is set.
161
+ * All attempts export otel data to remotes by default when this is set
161
162
  *
162
163
  * @example
163
164
  * {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "endform",
3
- "version": "0.72.0",
3
+ "version": "0.74.0",
4
4
  "description": "Endform CLI",
5
5
  "license": "UNLICENSED",
6
6
  "repository": "https://github.com/endformdev/npm",
@@ -21,9 +21,9 @@
21
21
  }
22
22
  },
23
23
  "optionalDependencies": {
24
- "endform-darwin-arm64": "0.72.0",
25
- "endform-darwin-x86": "0.72.0",
26
- "endform-linux-arm64": "0.72.0",
27
- "endform-linux-x86": "0.72.0"
24
+ "endform-darwin-arm64": "0.74.0",
25
+ "endform-darwin-x86": "0.74.0",
26
+ "endform-linux-arm64": "0.74.0",
27
+ "endform-linux-x86": "0.74.0"
28
28
  }
29
29
  }