omnipin 1.4.1 → 1.4.2
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/cli.js +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -20039,7 +20039,7 @@ var parseTokensFromEnv = () => {
|
|
|
20039
20039
|
const tokens = /* @__PURE__ */ new Map();
|
|
20040
20040
|
for (const [key, value] of Object.entries(process.env)) {
|
|
20041
20041
|
if (key.startsWith("OMNIPIN_") && value)
|
|
20042
|
-
tokens.set(key.slice(
|
|
20042
|
+
tokens.set(key.slice(8), value);
|
|
20043
20043
|
}
|
|
20044
20044
|
return tokens;
|
|
20045
20045
|
};
|