From fe139bf26b5f76db3b3e9a351300129c2497b967 Mon Sep 17 00:00:00 2001 From: mat <27899617+mat-1@users.noreply.github.com> Date: Sat, 13 Feb 2021 15:14:35 -0600 Subject: add dotenv as dev dependency --- src/hypixelApi.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/hypixelApi.ts b/src/hypixelApi.ts index cb8f0e0..2f66343 100644 --- a/src/hypixelApi.ts +++ b/src/hypixelApi.ts @@ -4,7 +4,10 @@ import fetch from 'node-fetch' import { jsonToQuery, shuffle } from './util' import { Agent } from 'https' -require('dotenv').config() + +if (!process.env.hypixel_keys) + // if there's no hypixel keys in env, run dotenv + require('dotenv').config() // We need to create an agent to prevent memory leaks and to only do dns lookups once const httpsAgent = new Agent({ -- cgit