@rynfar/meridian 1.69.0 → 1.71.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.
@@ -13,9 +13,12 @@ var MAX_HEADER_BYTES = 768;
13
13
  var MAX_PAYLOAD_BYTES = 384;
14
14
  var TURN_DIGEST_PATTERN = /^[A-Za-z0-9_-]{43}$/;
15
15
  var SAFE_ID_PATTERN = /^[A-Za-z0-9._:-]{1,128}$/;
16
- function configDirectory() {
16
+ function meridianConfigDirectory() {
17
17
  return process.env.MERIDIAN_CONFIG_DIR ?? join(homedir(), ".config", "meridian");
18
18
  }
19
+ function configDirectory() {
20
+ return meridianConfigDirectory();
21
+ }
19
22
  function priorityAttestationKeyPath() {
20
23
  return join(configDirectory(), PRIORITY_ATTESTATION_KEY_FILE);
21
24
  }