@appchy/jarvis 0.1.17 → 0.1.18
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/bin.js +4 -2
- package/dist/bin.js.map +1 -1
- package/package.json +1 -1
package/dist/bin.js
CHANGED
|
@@ -5896,9 +5896,11 @@ function findEnv() {
|
|
|
5896
5896
|
}
|
|
5897
5897
|
var envFile = findEnv();
|
|
5898
5898
|
if (envFile) {
|
|
5899
|
-
const
|
|
5899
|
+
const prevApiKey = process.env.ANTHROPIC_API_KEY;
|
|
5900
|
+
const prevAppUrl = process.env.APP_URL;
|
|
5900
5901
|
dotenv.config({ path: envFile });
|
|
5901
|
-
if (
|
|
5902
|
+
if (prevApiKey === void 0) delete process.env.ANTHROPIC_API_KEY;
|
|
5903
|
+
if (prevAppUrl === void 0) delete process.env.APP_URL;
|
|
5902
5904
|
}
|
|
5903
5905
|
createCli().parse();
|
|
5904
5906
|
//# sourceMappingURL=bin.js.map
|