@dotenvx/primitives 0.10.0 → 0.11.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/dist/index.cjs +3 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -6308,12 +6308,14 @@ var require_parse = __commonJS({
|
|
|
6308
6308
|
function parse2(src, options = {}) {
|
|
6309
6309
|
const overload = options.overload;
|
|
6310
6310
|
const processEnv = options.processEnv || process.env;
|
|
6311
|
+
const fk = options.fk;
|
|
6312
|
+
const provider = options.provider;
|
|
6311
6313
|
const publicKeyHexes = publickeys2(src);
|
|
6312
6314
|
let ring = {};
|
|
6313
6315
|
for (const publicKeyHex of publicKeyHexes) {
|
|
6314
6316
|
ring[publicKeyHex] = "";
|
|
6315
6317
|
}
|
|
6316
|
-
ring = keyring2({ processEnv, ring });
|
|
6318
|
+
ring = keyring2({ processEnv, ring, fk, provider });
|
|
6317
6319
|
function inProcessEnv(name) {
|
|
6318
6320
|
return Object.prototype.hasOwnProperty.call(processEnv, name);
|
|
6319
6321
|
}
|
package/package.json
CHANGED