From b110ef3b55cfb5c6093a71b9b0fd46886fc145bc Mon Sep 17 00:00:00 2001 From: Anupam Bista Date: Fri, 20 Sep 2024 09:26:28 +0545 Subject: [PATCH] removed package dotenv --- package.json | 1 - pnpm-lock.yaml | 9 --------- src/index.ts | 1 - 3 files changed, 11 deletions(-) diff --git a/package.json b/package.json index 561032a..54c0323 100644 --- a/package.json +++ b/package.json @@ -22,7 +22,6 @@ "chalk": "^4.1.2", "class-transformer": "^0.5.1", "commander": "^12.1.0", - "dotenv": "^16.4.5", "nodemailer": "^6.9.14", "ts-node": "^10.9.2", "winston": "^3.14.1", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index af13e5f..9db82e2 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -26,9 +26,6 @@ importers: commander: specifier: ^12.1.0 version: 12.1.0 - dotenv: - specifier: ^16.4.5 - version: 16.4.5 nodemailer: specifier: ^6.9.14 version: 6.9.15 @@ -1257,10 +1254,6 @@ packages: resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} engines: {node: '>=0.3.1'} - dotenv@16.4.5: - resolution: {integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==} - engines: {node: '>=12'} - dynamic-dedupe@0.3.0: resolution: {integrity: sha512-ssuANeD+z97meYOqd50e04Ze5qp4bPqo8cCkI4TRjZkzAUgIDTrXV1R8QCdINpiI+hw14+rYazvTRdQrz0/rFQ==} @@ -3662,8 +3655,6 @@ snapshots: diff@4.0.2: {} - dotenv@16.4.5: {} - dynamic-dedupe@0.3.0: dependencies: xtend: 4.0.2 diff --git a/src/index.ts b/src/index.ts index 131394f..68ca3ed 100755 --- a/src/index.ts +++ b/src/index.ts @@ -1,4 +1,3 @@ -import "dotenv/config"; import backupHelper from "./utils/backup.utils"; import { exec } from "child_process"; import { ConfigType } from "./@types/types";